23 Commits

Author SHA1 Message Date
Gitea CI
b9143544c4 Bump version: 0.1.27 → 0.1.28 2025-05-29 09:17:18 +00:00
4e59dfad54 Refactor release workflow: uncomment and configure push changes, build changelog, and create release steps 2025-05-29 11:16:56 +02:00
a0d0535044 Enable tagging and commit options in bumpversion configuration 2025-05-29 11:15:29 +02:00
ea16d817e1 Remove --locked option from uv sync command in release workflow 2025-05-29 11:13:40 +02:00
9e2621cd60 move bump to pyproject 2025-05-29 11:10:20 +02:00
655b6c0df5 Bump version: 0.1.26 → 0.1.27 2025-05-29 11:09:47 +02:00
605dc750e7 Bump version: 0.1.25 → 0.1.26 2025-05-29 11:09:47 +02:00
78faddf56e Bump version: 0.1.24 → 0.1.25 2025-05-29 11:09:47 +02:00
2686d822cd Update .gitea/workflows/relase.yml 2025-05-29 10:02:47 +01:00
a121e59f47 Refactor release workflow by commenting out unused steps for clarity 2025-05-29 11:01:48 +02:00
Gitea CI
bdc46d7f37 Bump version: 0.1.23 → 0.1.24 2025-05-29 08:58:46 +00:00
Gitea CI
4259f49d94 Bump version: 0.1.22 → 0.1.23 2025-05-29 08:52:44 +00:00
95e2cdcdce Fix changelog action usage by specifying the full GitHub URL for the action 2025-05-29 10:52:21 +02:00
Gitea CI
55d0cb50e6 Bump version: 0.1.21 → 0.1.22 2025-05-29 08:48:29 +00:00
3424805d4e bump version of changelog generator 2025-05-29 10:47:35 +02:00
Gitea CI
5c0fcbdb66 Bump version: 0.1.20 → 0.1.21 2025-05-29 08:46:59 +00:00
f35e19d44d Refactor changelog action to use environment variable for Gitea token 2025-05-29 10:45:52 +02:00
Gitea CI
ef54d663d2 Bump version: 0.1.19 → 0.1.20 2025-05-29 08:43:15 +00:00
2ab0dcd60b Fix changelog action ID and update token secret for Gitea integration 2025-05-29 10:42:50 +02:00
Gitea CI
9a2b6eeafc Bump version: 0.1.18 → 0.1.19 2025-05-29 08:40:05 +00:00
4c6d4a7c6f test rcb 2025-05-29 10:39:04 +02:00
b3decbcd05 Update .gitea/workflows/bumptest.yml 2025-05-29 09:29:47 +01:00
2aed04e150 Update .gitea/workflows/bumptest.yml
Some checks failed
Bump version / build (release) Failing after 35s
2025-05-29 09:26:59 +01:00
6 changed files with 69 additions and 43 deletions

View File

@@ -1,22 +0,0 @@
[tool.bumpversion]
current_version = "0.1.18"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = true
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []
[[tool.bumpversion.files]]
filename = ".version"

View File

@@ -0,0 +1,29 @@
{
"categories": [
{
"title": "## 🚀 Features",
"labels": ["add","Add"]
},
{
"title": "## 🐛 Fixes",
"labels": ["fix","Fix"]
},
{
"title": "## 🧪 Upgrade",
"labels": ["upgrade","Upgrade","Clean"]
}
],
"label_extractor": [
{
"pattern": "(\\w+) (.+)",
"target": "$1",
"on_property": "title"
}
],
"sort": "ASC",
"template": "${{CHANGELOG}}",
"pr_template": "- ${{TITLE}}\n - PR: #${{NUMBER}}",
"empty_template": "- no changes",
"max_pull_requests": 1000,
"max_back_track_time_days": 1000
}

View File

@@ -1,10 +1,10 @@
name: Bump version
on:
on:
release:
types: [published]
workflow_dispatch:
jobs:
build:
@@ -18,6 +18,9 @@ jobs:
curl -o git-chglog -L "https://github.com/git-chglog/git-chglog/releases/download/${CHGLOG_VERSION}/git-chglog_linux_amd64"
chmod +x git-chglog
- name: show structure
run: ls -la
- name: Generate CHANGELOG.md
id: generate
run: |

View File

@@ -37,7 +37,7 @@ jobs:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --locked --all-extras --dev
run: uv sync --all-extras --dev
- name: Set Git identity
run: |
git config user.name "Gitea CI"
@@ -52,31 +52,25 @@ jobs:
echo "$(uv tool run bump-my-version show current_version)" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Check version
run: echo ${{ env.VERSION }}
run: |
echo ${{ env.VERSION }}
cat pyproject.toml
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
- name: "Build Changelog"
- name: Build Changelog
id: build_changelog
uses: mikepenz/release-changelog-builder-action@v5.0.0
uses: https://github.com/mikepenz/release-changelog-builder-action@v5
with:
mode: "COMMIT"
platform: "gitea"
baseURL: "http://gitea:3000"
configuration: ".gitea/changelog-config.json"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Add release notes to environment
id: add_release_notes
run: |
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
echo "${{ github.event.inputs.release_notes }}" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Get the changelog
run: |
cat << "EOF"
${{ steps.changelog.outputs.changelog }}
EOF
echo ${{ steps.changelog.outputs.changelog }}
GITHUB_TOKEN: ${{ secrets.GITEA_TOKEN }}
- name: Create release

View File

@@ -1 +1 @@
0.1.18
0.1.27

View File

@@ -1,6 +1,6 @@
[project]
name = "workflowbumptester"
version = "0.1.0"
version = "0.1.28"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
@@ -8,3 +8,25 @@ dependencies = [
"bump-my-version>=1.1.3",
"pyyaml>=6.0.2",
]
[tool.bumpversion]
current_version = "0.1.28"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = true
commit = true
message = "Bump version: {current_version} → {new_version}"
moveable_tags = []
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []