github: add quotes around shell variable

PiperOrigin-RevId: 503526899
This commit is contained in:
Kevin Krakauer
2023-01-20 14:47:04 -08:00
committed by gVisor bot
parent 8dec4e3030
commit 226daf3879
+2 -2
View File
@@ -23,9 +23,9 @@ jobs:
- id: setup
run: |
if ! [[ -z "${{ secrets.GO_TOKEN }}" ]]; then
echo has_token=true >> $GITHUB_OUTPUT
echo has_token=true >> "$GITHUB_OUTPUT"
else
echo has_token=false >> $GITHUB_OUTPUT
echo has_token=false >> "$GITHUB_OUTPUT"
fi
- run: |
jq -nc '{"state": "pending", "context": "go tests"}' | \