wait for a release to no longer be draft before downloading

This commit is contained in:
Earl Warren 2023-05-24 01:01:51 +02:00
parent 56c1c975a3
commit 358b55efd4
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
4 changed files with 44 additions and 0 deletions

View file

@ -27,6 +27,8 @@ inputs:
description: 'GPG Private Key to sign the release artifacts'
gpg-passphrase:
description: 'Passphrase of the GPG Private Key'
download-retry:
description: 'Number of times to retry if the release is not ready (default 1)'
verbose:
description: 'Increase the verbosity level'
default: 'false'
@ -71,5 +73,7 @@ runs:
export VERBOSE="${{ inputs.verbose }}"
export RETRY="${{ inputs.download-retry }}"
forgejo-release.sh ${{ inputs.direction }}
shell: bash