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 a603dbe commit ea643d4Copy full SHA for ea643d4
.bumpversion.toml
@@ -7,7 +7,7 @@ replace = "{new_version}"
7
regex = false
8
ignore_missing_version = false
9
ignore_missing_files = false
10
-tag = true
+tag = false
11
sign_tags = false
12
tag_name = "v{new_version}"
13
tag_message = "Bump version: {current_version} → {new_version}"
.github/workflows/draft-release.yml
@@ -172,6 +172,9 @@ jobs:
172
173
- name: Push changes to the repo
174
run: |
175
+ # Create a new tag for the release
176
+ git tag ${{ steps.bump_version.outputs.version }}
177
+
178
# Set a new remote URL using HTTPS with the github token
179
git remote set-url origin https://x-access-token:${{ github.token }}@github.com/${{ github.repository }}.git
180
0 commit comments