We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07e0116 commit 6163bd6Copy full SHA for 6163bd6
1 file changed
.github/workflows/release.yml
@@ -25,6 +25,14 @@ jobs:
25
steps:
26
- name: Check out project
27
uses: actions/checkout@v4
28
+ with:
29
+ fetch-depth: 0
30
+ # Needs to be an admin token to get around branch protection.
31
+ token: ${{ secrets.GH_TOKEN_REDALLEN }}
32
+
33
+ # Fetches all tags from 'origin' and updates local tags, only fetches the latest commit.
34
+ - name: Fetch tags
35
+ run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
36
37
- name: Set up and build project
38
uses: ./.github/actions/setup-project
0 commit comments