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 }}"