Skip to content

Commit

Permalink
fix: Fall back to empty string if executable is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Feb 12, 2025
1 parent 1a1be9a commit 6fa9974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_dispatcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
name="$(basename "$(dirname "${{ matrix.changed_file }}")")"
pip_url="$(./yq '.pip_url // ""' "${{ matrix.changed_file }}")"
variant="$(./yq '.variant' "${{ matrix.changed_file }}")"
executable="$(./yq '.executable' "${{ matrix.changed_file }}")"
executable="$(./yq '.executable // ""' "${{ matrix.changed_file }}")"
echo "name=${name}" >> $GITHUB_ENV
echo "pip_url=${pip_url}" >> $GITHUB_ENV
echo "executable=${executable}" >> $GITHUB_ENV
Expand Down

0 comments on commit 6fa9974

Please sign in to comment.