diff options
-rwxr-xr-x | .github/workflows/ci.generate.ts | 1 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 9 |
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: |