Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ec5a4f175a | ||
| a94cde06ac | |||
|
a0154f345c
|
|||
|
|
794b1ff5e1 | ||
| fc70ae2bdc | |||
|
6598e30a42
|
|||
|
b07928c8af
|
|||
|
|
3a47378dc1 | ||
|
09c240089f
|
|||
|
|
9c130ac1d0 |
@@ -1,10 +1,6 @@
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
release_notes:
|
||||
description: Release notes (use \n for newlines)
|
||||
type: string
|
||||
required: false
|
||||
github_release:
|
||||
description: 'Create Gitea Release'
|
||||
default: true
|
||||
@@ -65,7 +61,7 @@ jobs:
|
||||
id: build_changelog
|
||||
uses: https://github.com/mikepenz/release-changelog-builder-action@v5
|
||||
with:
|
||||
mode: "COMMIT"
|
||||
|
||||
platform: "gitea"
|
||||
baseURL: "http://gitea:3000"
|
||||
configuration: ".gitea/changelog-config.json"
|
||||
|
||||
1
hello.py
1
hello.py
@@ -6,6 +6,7 @@ def main():
|
||||
def get_version():
|
||||
with open(".version") as f:
|
||||
return f.read().strip()
|
||||
print("Version file not found. Returning default version '0.0.0'.")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "workflowbumptester"
|
||||
version = "0.1.29"
|
||||
version = "1.0.3"
|
||||
description = "Add your description here"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.13"
|
||||
@@ -10,7 +10,7 @@ dependencies = [
|
||||
]
|
||||
|
||||
[tool.bumpversion]
|
||||
current_version = "0.1.29"
|
||||
current_version = "1.0.3"
|
||||
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
||||
serialize = ["{major}.{minor}.{patch}"]
|
||||
search = "{current_version}"
|
||||
|
||||
Reference in New Issue
Block a user