Skip to content

Commit

Permalink
fix: quoting around print output steps
Browse files Browse the repository at this point in the history
  • Loading branch information
OmegaSquad82 committed Feb 6, 2025
1 parent 959311d commit e6b6127
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ jobs:

- name: Print outputs
run: |
echo "${{ toJSON(steps.build.outputs) }}" | jq .
echo '${{ toJSON(steps.build.outputs) }}' | jq .
4 changes: 2 additions & 2 deletions .github/workflows/composition-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ jobs:

- name: Print outputs
run: |
echo "${{ toJSON(steps.ort.outputs) }}" | jq .
echo "${{ toJSON(steps.tern.outputs) }}" | jq .
echo '${{ toJSON(steps.ort.outputs) }}' | jq .
echo '${{ toJSON(steps.tern.outputs) }}' | jq .
6 changes: 3 additions & 3 deletions .github/workflows/recompress-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,6 @@ jobs:

- name: Print outputs
run: |
echo "${{ toJSON(steps.pull.outputs) }}" | jq .
echo "${{ toJSON(steps.push.outputs) }}" | jq .
echo "${{ toJSON(steps.sign.outputs) }}" | jq .
echo '${{ toJSON(steps.pull.outputs) }}' | jq .
echo '${{ toJSON(steps.push.outputs) }}' | jq .
echo '${{ toJSON(steps.sign.outputs) }}' | jq .

0 comments on commit e6b6127

Please sign in to comment.