From 3a4d55c8c404e9c71b55f7ba26ff360f7bd6ddfb Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Tue, 5 Aug 2025 15:03:21 +0200 Subject: [PATCH] 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. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 2c70085..f6725c7 100644 --- a/action.yml +++ b/action.yml @@ -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 }}"