Skip to content

Commit

Permalink
Update GitHub action for release creation
Browse files Browse the repository at this point in the history
see #125
  • Loading branch information
programming-wolf committed Nov 8, 2022
1 parent 3266758 commit dfa7eec
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_releasecandidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit dfa7eec

Please sign in to comment.