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] [tool.bumpversion]
current_version = "0.1.8" current_version = "0.1.10"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)" parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"] serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}" search = "{current_version}"

View File

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

View File

@@ -1 +1 @@
0.1.8 0.1.10