4 Commits

Author SHA1 Message Date
Gitea CI
592703b6cc Bump version: 0.1.11 → 0.1.12 2025-05-21 08:58:37 +00:00
173d480d5b Update .gitea/workflows/relase.yml 2025-05-21 09:58:15 +01:00
Gitea CI
0e2e20ea28 Bump version: 0.1.10 → 0.1.11 2025-05-21 08:56:30 +00:00
7796df45e5 test new changelog generator 2025-05-21 10:55:31 +02:00
3 changed files with 10 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
[tool.bumpversion] [tool.bumpversion]
current_version = "0.1.10" current_version = "0.1.12"
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,16 @@ 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: Update CHANGELOG - name: Generate changelog
id: changelog id: changelog
uses: requarks/changelog-action@v1 uses: metcalfc/changelog-generator@v4.6.2
with: with:
token: ${{ secrets.TOKEN }} token: ${{ secrets.TOKEN }}
tag: ${{ github.ref_name }} - name: Get the changelog
run: |
cat << "EOF"
${{ steps.changelog.outputs.changelog }}
EOF
- name: Create release - name: Create release
id: create_release id: create_release
@@ -78,7 +82,7 @@ jobs:
with: with:
tag_name: ${{ env.VERSION }} tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }} release_name: Release ${{ env.VERSION }}
body: ${{ steps.changelog.outputs.changes }} body: ${{ steps.changelog.outputs.changelog }}
draft: false draft: false
prerelease: false prerelease: false
make_latest: true make_latest: true

View File

@@ -1 +1 @@
0.1.10 0.1.12