Skip to content

Commit

Permalink
ci: fix canary uploads for unix (denoland#22206)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Jan 31, 2024
1 parent 1b83b84 commit 81042fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' &&",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' &&
Expand Down

0 comments on commit 81042fb

Please sign in to comment.