File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -43,17 +43,17 @@ jobs:
4343 - id : check
4444 run : |
4545 if [[ "${{ github.event.workflow_run.conclusion }}" == "success" ]]; then
46- echo "should_run=true" >> $GITHUB_OUTPUT
46+ echo "should_run=true" >> " $GITHUB_OUTPUT"
4747 else
48- echo "should_run=false" >> $GITHUB_OUTPUT
48+ echo "should_run=false" >> " $GITHUB_OUTPUT"
4949 fi
5050 - id : get_env
5151 run : |
5252 ENV_VALUE=$(gh api "${{ github.event.workflow_run.artifacts_url }}" --jq '.environment')
5353 if [[ -n "$ENV_VALUE" ]]; then
54- echo "environment=$ENV_VALUE" >> $GITHUB_OUTPUT
54+ echo "environment=$ENV_VALUE" >> " $GITHUB_OUTPUT"
5555 else
56- echo "environment=Experimenting" >> $GITHUB_OUTPUT # Default fallback
56+ echo "environment=Experimenting" >> " $GITHUB_OUTPUT" # Default fallback
5757 fi
5858
5959 MATS :
@@ -121,7 +121,7 @@ jobs:
121121 - id : check_status
122122 run : |
123123 if [[ "${{ needs.MATS.result }}" == "success" ]]; then
124- echo "mats_success=true" >> $GITHUB_OUTPUT
124+ echo "mats_success=true" >> " $GITHUB_OUTPUT"
125125 else
126- echo "mats_success=false" >> $GITHUB_OUTPUT
126+ echo "mats_success=false" >> " $GITHUB_OUTPUT"
127127 fi
You can’t perform that action at this time.
0 commit comments