5
0
Fork 0
mirror of https://code.forgejo.org/actions/forgejo-release synced 2025-11-07 19:06:55 +00:00

fix: do not preserve spaces in the token

If a token has trailing whitespace by accident, they must
not be preserved. Do not quote the value so that they are trimmed
by shell evaluation.
This commit is contained in:
Earl Warren 2025-08-05 15:03:21 +02:00
parent c263d31a62
commit 3a4d55c8c4
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -88,7 +88,7 @@ runs:
export HIDE_ARCHIVE_LINK="${{ inputs.hide-archive-link }}"
export TOKEN="${{ inputs.token }}"
export TOKEN=${{ inputs.token }}
export RELEASE_DIR="${{ inputs.release-dir }}"