diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4472df7da..089821408 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,6 +127,15 @@ jobs: service_account_key: ${{ secrets.GCP_SA_KEY }} export_default_credentials: true + - name: Configure canary build + if: | + matrix.kind == 'test_release' && + github.repository == 'denoland/deno' && + github.ref == 'refs/heads/master' + shell: bash + run: | + echo "DENO_CANARY=true" >> $GITHUB_ENV + - name: Log versions run: | node -v |
