Update .gitea/workflows/relase.yml

This commit is contained in:
2025-05-21 09:44:53 +01:00
parent 4eab9159d4
commit 52a95c4860

View File

@@ -64,12 +64,7 @@ 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: Create release
id: create_release
if: ${{ github.event.inputs.github_release == 'true' }}
@@ -77,7 +72,7 @@ jobs:
with:
tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
body_path: changelog.md
draft: false
prerelease: false
make_latest: true