From 62ca7b39008074352b180f37139738adb4220466 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sat, 24 Jun 2023 22:25:30 +0200 Subject: [PATCH] Replace release action as old action had no retries and fucked up the release like every time without retries 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 dfc8ec6..dab22c9 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -69,13 +69,12 @@ jobs: run: 'awk "/^#/ && ++c==2{exit}; /^#/f" "History.md" | tail -n +2 >release_changelog.md' - 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 ...