diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-02-05 20:33:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 20:33:21 +0100 |
commit | 647f11b3acc2f629a6d77836f5f6ef74ee10c4ce (patch) | |
tree | f29daafe0217e0b9db9d14eca27f2ca6bafffd4d | |
parent | ae10219f59a16dc32b6a6538c9593301a86f1d95 (diff) |
ci: fix release process (#9418)
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05a850cbf..9ea6938b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,8 +111,8 @@ jobs: runner.os != 'Windows' && matrix.kind == 'test_release' && github.repository == 'denoland/deno' && - github.ref == 'refs/heads/master' || - startsWith(github.ref, 'refs/tags/') + (github.ref == 'refs/heads/master' || + startsWith(github.ref, 'refs/tags/')) uses: google-github-actions/setup-gcloud@master with: project_id: denoland @@ -124,8 +124,8 @@ jobs: runner.os == 'Windows' && matrix.kind == 'test_release' && github.repository == 'denoland/deno' && - github.ref == 'refs/heads/master' || - startsWith(github.ref, 'refs/tags/') + (github.ref == 'refs/heads/master' || + startsWith(github.ref, 'refs/tags/')) uses: google-github-actions/setup-gcloud@master env: CLOUDSDK_PYTHON: ${{env.pythonLocation}}\python.exe |