4 Commits

Author SHA1 Message Date
Gitea CI
ae8d2b01b3 Bump version: 0.1.9 → 0.1.10 2025-05-21 08:51:04 +00:00
3bf862d843 Update .gitea/workflows/relase.yml 2025-05-21 09:50:28 +01:00
Gitea CI
c00f2b91cc Bump version: 0.1.8 → 0.1.9 2025-05-21 08:45:16 +00:00
52a95c4860 Update .gitea/workflows/relase.yml 2025-05-21 09:44:53 +01:00
3 changed files with 10 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.1.8"
current_version = "0.1.10"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"

View File

@@ -64,12 +64,13 @@ jobs:
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
echo "${{ github.event.inputs.release_notes }}" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Set changelog to environment
id: set_changelog
run: |
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
echo "$(cat changelog.md)" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Update CHANGELOG
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ secrets.TOKEN }}
tag: ${{ github.ref_name }}
- name: Create release
id: create_release
if: ${{ github.event.inputs.github_release == 'true' }}
@@ -77,7 +78,7 @@ jobs:
with:
tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
body_path: changelog.md
body: ${{ steps.changelog.outputs.changes }}
draft: false
prerelease: false
make_latest: true

View File

@@ -1 +1 @@
0.1.8
0.1.10