diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-09-19 12:46:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-19 11:46:40 +0000 |
| commit | 51cac074dc24fa03d6094c3ef98b754f41165e9a (patch) | |
| tree | f200e27ab5fe912b0fe0b416022cdc8a83cf1d62 /.github/workflows/ci.yml | |
| parent | bb45446fa763b077f705971ca091008febab0794 (diff) | |
ci: Fix uploading latest canary version (#25725)
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 9 insertions, 0 deletions
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: |
