mirror of
https://code.forgejo.org/actions/forgejo-release.git
synced 2025-09-03 14:51:55 +03: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:
parent
c263d31a62
commit
3a4d55c8c4
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ runs:
|
||||||
|
|
||||||
export HIDE_ARCHIVE_LINK="${{ inputs.hide-archive-link }}"
|
export HIDE_ARCHIVE_LINK="${{ inputs.hide-archive-link }}"
|
||||||
|
|
||||||
export TOKEN="${{ inputs.token }}"
|
export TOKEN=${{ inputs.token }}
|
||||||
|
|
||||||
export RELEASE_DIR="${{ inputs.release-dir }}"
|
export RELEASE_DIR="${{ inputs.release-dir }}"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue