summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-07-31 16:06:13 -0700
committergVisor bot <gvisor-bot@google.com>2020-07-31 16:08:29 -0700
commita7d9aa6d5bfbed11c94578c6a2eb04ce75cbdbe5 (patch)
tree15e69a0ab5d7f71341de4063c7f4b40d6056294b /.github/workflows
parent12a6657d9c037b4359923069c67377d516b15194 (diff)
Use proper set-output syntax.
PiperOrigin-RevId: 324302828
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/go.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 18b805c15..0869fb8db 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -14,9 +14,9 @@ jobs:
- id: setup
run: |
if ! [[ -z "${{ secrets.GO_TOKEN }}" ]]; then
- echo ::set-output has_token=true
+ echo ::set-output name=has_token::true
else
- echo ::set-output has_token=false
+ echo ::set-output name=has_token::false
fi
- run: |
jq -nc '{"state": "pending", "context": "go tests"}' | \