From 1a5057e26149dbeb5f62ae048f9a499d973cdcd3 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sat, 24 Jun 2023 22:26:42 +0200 Subject: [PATCH] [ci] Replace release action old one was too unreliable Signed-off-by: Knut Ahlers --- .github/workflows/test-and-build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index 207916c..aaf7a42 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -77,13 +77,12 @@ jobs: git push -f origin stable - name: Release - uses: softprops/action-gh-release@v1 + uses: ncipollo/release-action@v1 if: startsWith(github.ref, 'refs/tags/') with: - body_path: release_changelog.md + artifacts: '.build/*' + bodyFile: release_changelog.md draft: false - fail_on_unmatched_files: true - files: '.build/*' - generate_release_notes: false + generateReleaseNotes: false ...