mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
ci: fix release process (#9418)
This commit is contained in:
parent
ae10219f59
commit
647f11b3ac
1 changed files with 4 additions and 4 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue