File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -42,17 +42,17 @@ jobs:
42
42
- id : check
43
43
run : |
44
44
if [[ "${{ github.event.workflow_run.conclusion }}" == "success" ]]; then
45
- echo "should_run=true" >> $GITHUB_OUTPUT
45
+ echo "should_run=true" >> " $GITHUB_OUTPUT"
46
46
else
47
- echo "should_run=false" >> $GITHUB_OUTPUT
47
+ echo "should_run=false" >> " $GITHUB_OUTPUT"
48
48
fi
49
49
- id : get_env
50
50
run : |
51
51
ENV_VALUE=$(gh api "${{ github.event.workflow_run.artifacts_url }}" --jq '.environment')
52
52
if [[ -n "$ENV_VALUE" ]]; then
53
- echo "environment=$ENV_VALUE" >> $GITHUB_OUTPUT
53
+ echo "environment=$ENV_VALUE" >> " $GITHUB_OUTPUT"
54
54
else
55
- echo "environment=Experimenting" >> $GITHUB_OUTPUT # Default fallback
55
+ echo "environment=Experimenting" >> " $GITHUB_OUTPUT" # Default fallback
56
56
fi
57
57
58
58
You can’t perform that action at this time.
0 commit comments