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.
2 parents 2fa6096 + 3b500ad commit 1466f34Copy full SHA for 1466f34
.github/scripts/bump_tag.sh
@@ -0,0 +1,7 @@
1
+set -eux
2
+
3
+# Update the v1 tag for GitHub Actions consumers
4
+if [[ ${RH_DRY_RUN:=true} != 'true' ]]; then
5
+ git tag -f -a v1 -m "Github Action release"
6
+ git push origin -f --tags
7
+fi
pyproject.toml
@@ -18,3 +18,6 @@ tag_template = "v{new_version}"
18
19
[[tool.tbump.file]]
20
src = "jupyter_releaser/__init__.py"
21
22
+[tool.jupyter-releaser.hooks]
23
+after-draft-release = "bash ./.github/scripts/bump_tag.sh"
0 commit comments