[ci] Replace release action

old one was too unreliable

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2023-06-24 22:26:42 +02:00
parent 49aba55cfe
commit 1a5057e261
Signed by: luzifer
GPG key ID: D91C3E91E4CAD6F5

View file

@ -77,13 +77,12 @@ jobs:
git push -f origin stable git push -f origin stable
- name: Release - name: Release
uses: softprops/action-gh-release@v1 uses: ncipollo/release-action@v1
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
with: with:
body_path: release_changelog.md artifacts: '.build/*'
bodyFile: release_changelog.md
draft: false draft: false
fail_on_unmatched_files: true generateReleaseNotes: false
files: '.build/*'
generate_release_notes: false
... ...