diff options
| author | crowlKats <13135287+crowlKats@users.noreply.github.com> | 2020-11-25 11:30:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-25 05:30:14 -0500 |
| commit | a08d2eee2b4adf0cdf6d9c8a475beff6ee1df29b (patch) | |
| tree | 40bea60c844636782a2364af632243e16d8db834 /.github | |
| parent | 8d12653738066facfc228b1d0d9e31b76c6d9de0 (diff) | |
add canary versioning (#8480)
Diffstat (limited to '.github')
| -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 |
