We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66c36de commit 80c06caCopy full SHA for 80c06ca
.github/workflows/release_publish-lts.yml
@@ -39,7 +39,7 @@ jobs:
39
fetch-tags: true
40
show-progress: false
41
token: ${{ secrets.GH_DEPLOY_TOKEN }}
42
- fetch-depth: 3
+ fetch-depth: 25
43
ref: ${{ github.event.inputs.source-branch }}
44
- run: git fetch origin --tags --depth=1
45
- name: Make sure git user is setup
.github/workflows/release_publish-stable.yml
@@ -65,8 +65,8 @@ jobs:
65
66
fetch-depth: 3
67
ref: release
68
- ## Ensure we have a copy of the source branch
69
- - run: git fetch origin ${{ github.event.inputs.source-branch }} --depth=1
+ ## Ensure we have a full copy of the source branch
+ - run: git fetch origin ${{ github.event.inputs.source-branch }} --depth=0
70
71
72
run: |
0 commit comments