mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
ci: Use fetch-depth: 5 (#4127)
This commit is contained in:
parent
14e7e1e3af
commit
fe181e2b48
1 changed files with 4 additions and 1 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -33,7 +33,10 @@ jobs:
|
|||
- name: Clone repository
|
||||
uses: actions/checkout@v1
|
||||
with:
|
||||
fetch-depth: 1
|
||||
# Use depth > 1, because sometimes we need to rebuild master and if
|
||||
# other commits have landed it will become impossible to rebuild if
|
||||
# the checkout is too shallow.
|
||||
fetch-depth: 5
|
||||
submodules: true
|
||||
|
||||
- name: Create source tarballs (release, linux)
|
||||
|
|
Loading…
Reference in a new issue