ci: Fix uploading latest canary version (#25725)

This commit is contained in:
Bartek Iwańczuk 2024-09-19 12:46:40 +01:00 committed by GitHub
parent bb45446fa7
commit 51cac074dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View File

@ -1087,6 +1087,7 @@ const ci = {
if:
"github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'",
steps: [
...cloneRepoStep,
authenticateWithGoogleCloud,
{
name: "Setup gcloud",

View File

@ -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: