From 51cac074dc24fa03d6094c3ef98b754f41165e9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 19 Sep 2024 12:46:40 +0100 Subject: [PATCH] ci: Fix uploading latest canary version (#25725) --- .github/workflows/ci.generate.ts | 1 + .github/workflows/ci.yml | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 7e5d85897d..835d7acbff 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -1087,6 +1087,7 @@ const ci = { if: "github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'", steps: [ + ...cloneRepoStep, authenticateWithGoogleCloud, { name: "Setup gcloud", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eecc5b5fdf..73eb7c0857 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: