Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4a81ec56e6 | ||
| a316d6630b | |||
|
bf687305ef
|
|||
|
|
0bcf0200ab | ||
| 6dff0e0cfc | |||
|
474d92e180
|
|||
|
|
d00135b00c | ||
| 3dfaf8d74d | |||
|
73d406e18d
|
|||
|
|
b4b4aadb65 | ||
| b6af2370bb | |||
|
6fdfdbee31
|
|||
|
|
5c11d34c84 | ||
| 06e714b23b | |||
|
dd97c0d68a
|
|||
|
|
ec5a4f175a | ||
| a94cde06ac | |||
|
a0154f345c
|
|||
|
|
794b1ff5e1 | ||
| fc70ae2bdc | |||
|
6598e30a42
|
|||
|
b07928c8af
|
|||
|
|
3a47378dc1 | ||
|
09c240089f
|
|||
|
|
9c130ac1d0 |
@@ -2,11 +2,17 @@
|
||||
"categories": [
|
||||
{
|
||||
"title": "## 🚀 Features",
|
||||
"labels": ["add","Add"]
|
||||
"labels": [
|
||||
"add",
|
||||
"Add"
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "## 🐛 Fixes",
|
||||
"labels": ["fix","Fix"]
|
||||
"labels": [
|
||||
"fix",
|
||||
"Fix"
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "## 🧪 Upgrade",
|
||||
|
||||
@@ -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
|
||||
@@ -28,6 +24,9 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # Fetch full history
|
||||
fetch-tags: true # Fetch all tags (refs/tags)
|
||||
|
||||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@v5
|
||||
@@ -65,7 +64,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
@@ -7,7 +7,6 @@ def get_version():
|
||||
with open(".version") as f:
|
||||
return f.read().strip()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
print("This script has been executed successfully.")
|
||||
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "workflowbumptester"
|
||||
version = "0.1.29"
|
||||
version = "1.0.8"
|
||||
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.8"
|
||||
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
||||
serialize = ["{major}.{minor}.{patch}"]
|
||||
search = "{current_version}"
|
||||
|
||||
Reference in New Issue
Block a user