summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-09-19 12:46:40 +0100
committerGitHub <noreply@github.com>2024-09-19 11:46:40 +0000
commit51cac074dc24fa03d6094c3ef98b754f41165e9a (patch)
treef200e27ab5fe912b0fe0b416022cdc8a83cf1d62 /.github
parentbb45446fa763b077f705971ca091008febab0794 (diff)
ci: Fix uploading latest canary version (#25725)
Diffstat (limited to '.github')
-rwxr-xr-x.github/workflows/ci.generate.ts1
-rw-r--r--.github/workflows/ci.yml9
2 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index 7e5d85897..835d7acbf 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 eecc5b5fd..73eb7c085 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: