3 Commits

Author SHA1 Message Date
Gitea CI
721e817b20 Bump version: 0.1.28 → 0.1.29 2025-05-29 09:43:22 +00:00
4a51f0c8e1 add v to release tag 2025-05-29 11:42:55 +02:00
bacdf95171 Add success message after script execution 2025-05-29 11:42:16 +02:00
3 changed files with 4 additions and 3 deletions

View File

@@ -78,7 +78,7 @@ jobs:
if: ${{ github.event.inputs.github_release == 'true' }}
uses: softprops/action-gh-release@master
with:
tag_name: ${{ env.VERSION }}
tag_name: v${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
body: ${{steps.build_changelog.outputs.changelog}}
draft: false

View File

@@ -10,3 +10,4 @@ def get_version():
if __name__ == "__main__":
main()
print("This script has been executed successfully.")

View File

@@ -1,6 +1,6 @@
[project]
name = "workflowbumptester"
version = "0.1.28"
version = "0.1.29"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
@@ -10,7 +10,7 @@ dependencies = [
]
[tool.bumpversion]
current_version = "0.1.28"
current_version = "0.1.29"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"