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:
parent
1b83b84454
commit
81042fb875
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.generate.ts
vendored
2
.github/workflows/ci.generate.ts
vendored
|
@ -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' &&",
|
||||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -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' &&
|
||||||
|
|
Loading…
Reference in a new issue