Skip to content

Commit

Permalink
ci: fix release process (denoland#9418)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Feb 5, 2021
1 parent ae10219 commit 647f11b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 647f11b

Please sign in to comment.