mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -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' &&
|
runner.os != 'Windows' &&
|
||||||
matrix.kind == 'test_release' &&
|
matrix.kind == 'test_release' &&
|
||||||
github.repository == 'denoland/deno' &&
|
github.repository == 'denoland/deno' &&
|
||||||
github.ref == 'refs/heads/master' ||
|
(github.ref == 'refs/heads/master' ||
|
||||||
startsWith(github.ref, 'refs/tags/')
|
startsWith(github.ref, 'refs/tags/'))
|
||||||
uses: google-github-actions/setup-gcloud@master
|
uses: google-github-actions/setup-gcloud@master
|
||||||
with:
|
with:
|
||||||
project_id: denoland
|
project_id: denoland
|
||||||
|
@ -124,8 +124,8 @@ jobs:
|
||||||
runner.os == 'Windows' &&
|
runner.os == 'Windows' &&
|
||||||
matrix.kind == 'test_release' &&
|
matrix.kind == 'test_release' &&
|
||||||
github.repository == 'denoland/deno' &&
|
github.repository == 'denoland/deno' &&
|
||||||
github.ref == 'refs/heads/master' ||
|
(github.ref == 'refs/heads/master' ||
|
||||||
startsWith(github.ref, 'refs/tags/')
|
startsWith(github.ref, 'refs/tags/'))
|
||||||
uses: google-github-actions/setup-gcloud@master
|
uses: google-github-actions/setup-gcloud@master
|
||||||
env:
|
env:
|
||||||
CLOUDSDK_PYTHON: ${{env.pythonLocation}}\python.exe
|
CLOUDSDK_PYTHON: ${{env.pythonLocation}}\python.exe
|
||||||
|
|
Loading…
Reference in a new issue