We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fa5073 commit e954000Copy full SHA for e954000
forge/actions/blueprint/action.yml
@@ -16,10 +16,5 @@ runs:
16
shell: bash
17
run: |
18
OUTPUT=$(forge blueprint dump ${{ inputs.path }} 2> >(tee /dev/stderr))
19
- echo "Output: $OUTPUT"
20
- echo "Final Output: $(echo $OUTPUT | jq -rc)"
21
- echo "json=$(echo $OUTPUT | jq -rc)" >> GITHUB_OUTPUT
22
- - name: Show
23
- shell: bash
24
- run: |
25
- echo ${{ steps.run.outputs.json }}
+ OUTPUT=$(echo $OUTPUT | jq -rc)
+ echo "json=$OUTPUT" >> $GITHUB_OUTPUT
0 commit comments