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 2ce524f commit cf20237Copy full SHA for cf20237
.github/workflows/version-preview.yaml
@@ -21,6 +21,20 @@ jobs:
21
with:
22
fetch-depth: 0
23
24
+ - name: Debug Git State
25
+ run: |
26
+ echo "Current branch: $(git branch --show-current)"
27
+ echo "Current HEAD: $(git rev-parse HEAD)"
28
+ echo ""
29
+ echo "Latest 5 commits:"
30
+ git log --oneline -5
31
32
+ echo "Latest tag:"
33
+ git describe --tags --abbrev=0 || echo "No tags found"
34
35
+ echo "Commits since last tag:"
36
+ git log $(git describe --tags --abbrev=0 2>/dev/null || echo "HEAD~10")..HEAD --oneline || echo "Cannot determine"
37
+
38
- name: Semantic Release (Dry Run)
39
id: semantic
40
uses: cycjimmy/semantic-release-action@v4
0 commit comments