From 332006402a22222e37122216edc9d595cb6fe9d0 Mon Sep 17 00:00:00 2001 From: benniekiss Date: Fri, 5 Jul 2024 14:35:11 +0000 Subject: [PATCH] rename download_latest option --- action.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 092d2a2..4ab38d1 100644 --- a/action.yml +++ b/action.yml @@ -12,8 +12,6 @@ inputs: description: 'Tag of the release' sha: description: 'SHA of the release' - latest: - description: 'Download the latest release' token: description: 'Forgejo application token' required: true @@ -31,6 +29,9 @@ inputs: description: 'Passphrase of the GPG Private Key' download-retry: description: 'Number of times to retry if the release is not ready (default 1)' + download_latest: + description: 'Download the latest release' + default: 'false' verbose: description: 'Increase the verbosity level' default: 'false' @@ -68,7 +69,7 @@ runs: TAG=${TAG##refs/tags/} fi - export LATEST="${{ inputs.latest }}" + export DOWNLOAD_LATEST="${{ inputs.download_latest }}" export PRERELEASE="${{ inputs.prerelease }}"