Skip to content

Commit 9650da7

Browse files
committed
Add tag fetching step to pre-release workflow
1 parent f96871b commit 9650da7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/pre-release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ jobs:
2626
node-version: '20.x'
2727
cache: 'npm'
2828

29+
- name: Fetch tags
30+
run: |
31+
git fetch --tags
32+
echo "All tags in repository:"
33+
git tag -l --sort=-version:refname
34+
echo ""
35+
echo "Tags matching alt pattern:"
36+
git tag -l "*-alt.*" --sort=-version:refname || echo "No alt tags found"
37+
2938
- name: Install dependencies
3039
run: npm ci
3140

0 commit comments

Comments
 (0)