mirror of
https://code.forgejo.org/actions/forgejo-release.git
synced 2024-11-21 15:40:58 -05:00
Add prerelease input to action.yml
This commit is contained in:
parent
4d98c454fb
commit
a29fc96f18
1 changed files with 6 additions and 1 deletions
|
@ -32,7 +32,10 @@ inputs:
|
|||
verbose:
|
||||
description: 'Increase the verbosity level'
|
||||
default: 'false'
|
||||
|
||||
prerelease:
|
||||
description: 'Mark Release as Pre-Release'
|
||||
default: 'false'
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
|
@ -60,6 +63,8 @@ runs:
|
|||
TAG=${TAG##refs/tags/}
|
||||
fi
|
||||
|
||||
export PRERELEASE="${{ inputs.prerelease }}"
|
||||
|
||||
export TOKEN="${{ inputs.token }}"
|
||||
|
||||
export RELEASE_DIR="${{ inputs.release-dir }}"
|
||||
|
|
Loading…
Reference in a new issue