diff options
-rwxr-xr-x | .github/workflows/ci.generate.ts | 2 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 5352e40fe..cd5e6426f 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -477,7 +477,7 @@ const ci = { { name: "Setup gcloud (unix)", if: [ - "matrix.os == 'windows' &&", + "matrix.os != 'windows' &&", "matrix.profile == 'release' &&", "matrix.job == 'test' &&", "github.repository == 'denoland/deno' &&", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f12fccf9..35b0a1af3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -204,7 +204,7 @@ jobs: create_credentials_file: true - name: Setup gcloud (unix) if: |- - !(matrix.skip) && (matrix.os == 'windows' && + !(matrix.skip) && (matrix.os != 'windows' && matrix.profile == 'release' && matrix.job == 'test' && github.repository == 'denoland/deno' && |