mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
ci: Fix uploading latest canary version (#25725)
This commit is contained in:
parent
bb45446fa7
commit
51cac074dc
2 changed files with 10 additions and 0 deletions
1
.github/workflows/ci.generate.ts
vendored
1
.github/workflows/ci.generate.ts
vendored
|
@ -1087,6 +1087,7 @@ const ci = {
|
||||||
if:
|
if:
|
||||||
"github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'",
|
"github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'",
|
||||||
steps: [
|
steps: [
|
||||||
|
...cloneRepoStep,
|
||||||
authenticateWithGoogleCloud,
|
authenticateWithGoogleCloud,
|
||||||
{
|
{
|
||||||
name: "Setup gcloud",
|
name: "Setup gcloud",
|
||||||
|
|
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
@ -683,6 +683,15 @@ jobs:
|
||||||
- build
|
- build
|
||||||
if: github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'
|
if: github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'
|
||||||
steps:
|
steps:
|
||||||
|
- name: Configure git
|
||||||
|
run: |-
|
||||||
|
git config --global core.symlinks true
|
||||||
|
git config --global fetch.parallel 32
|
||||||
|
- name: Clone repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 50
|
||||||
|
submodules: false
|
||||||
- name: Authenticate with Google Cloud
|
- name: Authenticate with Google Cloud
|
||||||
uses: google-github-actions/auth@v2
|
uses: google-github-actions/auth@v2
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue