From 647f11b3acc2f629a6d77836f5f6ef74ee10c4ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 5 Feb 2021 20:33:21 +0100 Subject: [PATCH] ci: fix release process (#9418) --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05a850cbf7..9ea6938b2b 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