1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

ci: fix canary uploads for unix (#22206)

This commit is contained in:
Luca Casonato 2024-01-31 16:09:17 +01:00 committed by GitHub
parent 1b83b84454
commit 81042fb875
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -477,7 +477,7 @@ const ci = {
{ {
name: "Setup gcloud (unix)", name: "Setup gcloud (unix)",
if: [ if: [
"matrix.os == 'windows' &&", "matrix.os != 'windows' &&",
"matrix.profile == 'release' &&", "matrix.profile == 'release' &&",
"matrix.job == 'test' &&", "matrix.job == 'test' &&",
"github.repository == 'denoland/deno' &&", "github.repository == 'denoland/deno' &&",

View file

@ -204,7 +204,7 @@ jobs:
create_credentials_file: true create_credentials_file: true
- name: Setup gcloud (unix) - name: Setup gcloud (unix)
if: |- if: |-
!(matrix.skip) && (matrix.os == 'windows' && !(matrix.skip) && (matrix.os != 'windows' &&
matrix.profile == 'release' && matrix.profile == 'release' &&
matrix.job == 'test' && matrix.job == 'test' &&
github.repository == 'denoland/deno' && github.repository == 'denoland/deno' &&