From dfa7eec1762af43eba6755e10cf1b46a0b59ad29 Mon Sep 17 00:00:00 2001 From: Benjamin Wolf Date: Tue, 8 Nov 2022 16:28:09 +0100 Subject: [PATCH] Update GitHub action for release creation see #125 --- .github/workflows/build_releasecandidate.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_releasecandidate.yml b/.github/workflows/build_releasecandidate.yml index 42cc832..0851417 100644 --- a/.github/workflows/build_releasecandidate.yml +++ b/.github/workflows/build_releasecandidate.yml @@ -44,14 +44,15 @@ jobs: - name: Create New Release Candidate if: startsWith(github.ref, 'refs/tags/') id: create-release-candidate - uses: actions/create-release@latest + uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token with: tag_name: ${{ env.RELEASE_VERSION }} - release_name: Release Candidate ${{ env.RELEASE_VERSION }} + name: Release Candidate ${{ env.RELEASE_VERSION }} draft: false prerelease: true + body_path: CHANGELOG.txt - name: Prepare Deployment if: startsWith(github.ref, 'refs/tags/') run: |