Update .gitea/workflows/relase.yml

This commit is contained in:
2025-05-21 09:50:28 +01:00
parent c00f2b91cc
commit 3bf862d843

View File

@@ -64,7 +64,13 @@ jobs:
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
echo "${{ github.event.inputs.release_notes }}" >> $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' }}
@@ -72,7 +78,7 @@ jobs:
with:
tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
body: ${{ steps.changelog.outputs.changes }}
draft: false
prerelease: false
make_latest: true