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