From e954000a71f0f65ebae8627c8c1f7b7172d091ee Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Thu, 29 Aug 2024 19:02:21 -0400 Subject: [PATCH] wip: testing --- forge/actions/blueprint/action.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/forge/actions/blueprint/action.yml b/forge/actions/blueprint/action.yml index 7da7a237..d4f67e97 100644 --- a/forge/actions/blueprint/action.yml +++ b/forge/actions/blueprint/action.yml @@ -16,10 +16,5 @@ runs: shell: bash run: | OUTPUT=$(forge blueprint dump ${{ inputs.path }} 2> >(tee /dev/stderr)) - echo "Output: $OUTPUT" - echo "Final Output: $(echo $OUTPUT | jq -rc)" - echo "json=$(echo $OUTPUT | jq -rc)" >> GITHUB_OUTPUT - - name: Show - shell: bash - run: | - echo ${{ steps.run.outputs.json }} \ No newline at end of file + OUTPUT=$(echo $OUTPUT | jq -rc) + echo "json=$OUTPUT" >> $GITHUB_OUTPUT \ No newline at end of file