summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 06c235a..0b4fd30 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -37,13 +37,16 @@ jobs:
- name: Create GitHub release
id: release
- uses: actions/create-release@v1
+ uses: ncipollo/release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
- tag_name: ${{ env.ARTIFACT_VERSION }}
- release_name: ${{ env.ARTIFACT_VERSION }}
- continue-on-error: true
+ tag: ${{ env.ARTIFACT_VERSION }}
+ name: ${{ env.ARTIFACT_VERSION }}
+ allowUpdates: true
+ omitBody: true
+ omitPrereleaseDuringUpdate: true
+ token: ${{ secrets.GITHUB_TOKEN }}
- name: Save release upload URL to artifact
run: echo "${{ steps.release.outputs.upload_url }}" > artifacts/release-upload-url