diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-09-19 01:37:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-19 00:37:13 +0000 |
commit | fd23e8ec4f815f273a348d528edbc3bf65a21b5f (patch) | |
tree | 4ee1b9f3639a7ffd2b40305b5c05766bf32c9c3a /.github/workflows/ci.generate.ts | |
parent | c3bc692842d0198a4878f823c1026c1f905cb7e5 (diff) |
ci: bump fetch depth to unblock canary uploads (#25716)
Current mac arm canaries are failing to upload because the existing
latest commit hash
is more that 5 commits behind and it's not in the git history.
Diffstat (limited to '.github/workflows/ci.generate.ts')
-rwxr-xr-x | .github/workflows/ci.generate.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 33008ce92..7e5d85897 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -158,7 +158,7 @@ const cloneRepoStep = [{ // Use depth > 1, because sometimes we need to rebuild main and if // other commits have landed it will become impossible to rebuild if // the checkout is too shallow. - "fetch-depth": 5, + "fetch-depth": 50, submodules: false, }, }]; |