We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3124fa9 + 0395f83 commit bef3d32Copy full SHA for bef3d32
1 file changed
.github/workflows/nbgv_prepare_release.yml
@@ -92,15 +92,16 @@ jobs:
92
echo "tag=$(nbgv get-version -v GitTagName)" >> "$GITHUB_OUTPUT"
93
echo "semver=$(nbgv get-version -v SemVer2)" >> "$GITHUB_OUTPUT"
94
95
- # 8️⃣ Create a throw-away bootstrap tag if this repo has none
+ # 8️⃣ Create + push a bootstrap tag the very first time
96
- name: 🏷️ Bootstrap first tag when repo is tag-less
97
run: |
98
if ! git tag --list | grep -q . ; then
99
echo "No tags found – creating bootstrap tag 0.0.0"
100
- git tag 0.0.0 # lightweight tag on current HEAD
+ git tag 0.0.0
101
+ # push just this tag so the changelog action can diff
102
+ git push origin 0.0.0
103
fi
104
-
105
# 9️⃣ Build & upload release-notes.md (uses commitMode flag)
106
- name: 📝 Generate release notes
107
id: changelog
0 commit comments