From 6fa507311e1e7500927aa4bb742132a3b530c88e Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Thu, 29 Aug 2024 18:58:33 -0400 Subject: [PATCH] wip: testing --- forge/actions/blueprint/action.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/forge/actions/blueprint/action.yml b/forge/actions/blueprint/action.yml index 6331f44a..7da7a237 100644 --- a/forge/actions/blueprint/action.yml +++ b/forge/actions/blueprint/action.yml @@ -16,4 +16,10 @@ runs: shell: bash run: | OUTPUT=$(forge blueprint dump ${{ inputs.path }} 2> >(tee /dev/stderr)) - echo "json=$(echo $OUTPUT | jq -c)" >> GITHUB_OUTPUT + 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