Replace release action
as old action had no retries and fucked up the release like every time without retries Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
fbf127b654
commit
62ca7b3900
1 changed files with 4 additions and 5 deletions
9
.github/workflows/test-and-build.yml
vendored
9
.github/workflows/test-and-build.yml
vendored
|
@ -69,13 +69,12 @@ jobs:
|
||||||
run: 'awk "/^#/ && ++c==2{exit}; /^#/f" "History.md" | tail -n +2 >release_changelog.md'
|
run: 'awk "/^#/ && ++c==2{exit}; /^#/f" "History.md" | tail -n +2 >release_changelog.md'
|
||||||
|
|
||||||
- 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
|
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
Loading…
Reference in a new issue