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:
|
||||
"github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'",
|
||||
steps: [
|
||||
...cloneRepoStep,
|
||||
authenticateWithGoogleCloud,
|
||||
{
|
||||
name: "Setup gcloud",
|
||||
|
|
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
@ -683,6 +683,15 @@ jobs:
|
|||
- build
|
||||
if: github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'
|
||||
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
|
||||
uses: google-github-actions/auth@v2
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue