Skip to content

Commit

Permalink
Fix echo with quotes (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjreed121 authored Nov 14, 2023
1 parent 73a4045 commit ce65206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
echo ${{ steps.set-matrix.outputs.matrix }}
- name: Set Run Condition
run: |
num_to_build=$(echo ${{ steps.set-matrix.outputs.matrix }} | jq '.include | length')
num_to_build=$(echo "${{ steps.set-matrix.outputs.matrix }}" | jq '.include | length')
if [[ "$num_to_build" -eq 0 ]]; then
echo "run_docker_jobs=false" >> $GITHUB_OUTPUT
else
Expand Down

0 comments on commit ce65206

Please sign in to comment.