From a29fc96f18dd22ad47b779038c53bf8348633543 Mon Sep 17 00:00:00 2001 From: Neshura Date: Wed, 3 Jan 2024 18:23:39 +0000 Subject: [PATCH] Add prerelease input to action.yml --- action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 92ee416..cd5fe69 100644 --- a/action.yml +++ b/action.yml @@ -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 }}"