Skip to content

Commit

Permalink
Update publish-all.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cesare-montresor authored Jan 26, 2023
1 parent 9147377 commit 80f528d
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/publish-all.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
name: 'publish all'
on:
workflow_dispatch:
inputs:
draftRelease:
description: 'Draft Release'
required: true
default: false
type: boolean
preRelease:
description: 'Pre Release'
required: true
default: false
type: boolean
#push:
# branches:
# - release
Expand Down Expand Up @@ -35,5 +46,5 @@ jobs:
tagName: TALight-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'TALight v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: false
prerelease: false
releaseDraft: ${{ inputs.draftRelease }}
prerelease: ${{ inputs.preRelease }}

0 comments on commit 80f528d

Please sign in to comment.