We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f96871b commit 9650da7Copy full SHA for 9650da7
.github/workflows/pre-release.yml
@@ -26,6 +26,15 @@ jobs:
26
node-version: '20.x'
27
cache: 'npm'
28
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
+
38
- name: Install dependencies
39
run: npm ci
40
0 commit comments