Skip to content

Commit

Permalink
ci: Fix uploading latest canary version (#25725)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju authored Sep 19, 2024
1 parent bb45446 commit 51cac07
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1087,6 +1087,7 @@ const ci = {
if:
"github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'",
steps: [
...cloneRepoStep,
authenticateWithGoogleCloud,
{
name: "Setup gcloud",
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 51cac07

Please sign in to comment.