Skip to content

Commit

Permalink
[#3111] Don't replace prerelease and existing release body during builds
Browse files Browse the repository at this point in the history
  • Loading branch information
arbron committed Feb 23, 2024
1 parent 243b56b commit 313081a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,10 @@ jobs:
allowUpdates: true # Set this to false if you want to prevent updating existing releases
name: ${{ env.TAG_NAME }}
draft: false
prerelease: false
prerelease: ${{ github.event.release.prerelease }}
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: './system.json, ./${{ env.ZIP_NAME }}'
tag: ${{ env.TAG_NAME }}
body: '**Installation:** To manually install this release, please use the following manifest URL: ${{ env.RELEASE_INSTALL_URL }}'
body: |
${{ github.event.release.body }}
**Installation:** To manually install this release, please use the following manifest URL: ${{ env.RELEASE_INSTALL_URL }}

0 comments on commit 313081a

Please sign in to comment.