Skip to content

Commit

Permalink
Release creation workflow now respects event context settings for dra…
Browse files Browse the repository at this point in the history
…ft and pre-release.

orffen#76
  • Loading branch information
DC23 committed Nov 28, 2024
1 parent c598c14 commit bd3b411
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
name: ${{ github.event.release.name }}
allowUpdates: true # Set this to false if you want to prevent updating existing releases
draft: false
prerelease: false
draft: ${{ github.event.release.draft }}
prerelease: ${{ github.event.release.prerelease }}
artifacts: './system.json, ./basicfantasyrpg.zip'
tag: ${{ github.event.release.tag_name }}
body: ${{ github.event.release.body }}
body: ${{ github.event.release.body }}

0 comments on commit bd3b411

Please sign in to comment.