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 096523d commit 362b337Copy full SHA for 362b337
.github/workflows/version-preview.yaml
@@ -24,6 +24,18 @@ jobs:
24
25
- name: Configure for preview
26
run: |
27
+ echo "Current HEAD: $(git rev-parse HEAD)"
28
+ echo "Current branch: $(git branch --show-current)"
29
+ echo ""
30
+ echo "Recent commits:"
31
+ git log --oneline -10
32
33
+ echo "Latest tag:"
34
+ git describe --tags --abbrev=0
35
36
+ echo "Commits since last tag:"
37
+ git log $(git describe --tags --abbrev=0)..HEAD --oneline
38
+
39
# Create temporary releaserc that allows any branch
40
cat > .releaserc.json << 'EOF'
41
{
@@ -37,7 +49,10 @@ jobs:
49
]
50
}
51
EOF
52
53
git checkout -b temp-preview-branch
54
55
+ echo "Created branch: $(git branch --show-current)"
56
42
57
- name: Preview Release
43
58
id: semantic
0 commit comments