We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 690648d commit 12ad957Copy full SHA for 12ad957
.github/workflows/pr-release.yml
@@ -61,7 +61,8 @@ jobs:
61
run: |
62
git init --bare lean4.git
63
git -C lean4.git remote add origin https://github.com/${{ github.repository_owner }}/lean4.git
64
- git -C lean4.git fetch -n origin master
+ # we only need to fetch the history; note this flag is sticky
65
+ git -C lean4.git fetch -n origin --filter=tree:0 master
66
git -C lean4.git fetch -n origin "${{ steps.workflow-info.outputs.sourceHeadSha }}"
67
68
# Create both the original tag and the SHA-suffixed tag
0 commit comments