From ec173333c5ee691d7808c3c5cb1eea424b9947da Mon Sep 17 00:00:00 2001 From: Louis Maddox Date: Sun, 12 Oct 2025 19:38:21 +0100 Subject: [PATCH] fix: typo in URL to repo in help text --- main.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.sh b/main.sh index c613ca26..2546d287 100755 --- a/main.sh +++ b/main.sh @@ -72,11 +72,11 @@ if [[ "${ref}" != "refs/tags/"* ]]; then if [[ -z "${dry_run_intended}" ]]; then # TODO: The warnings are somewhat noisy if we have a lot of build matrix: # https://github.com/taiki-e/upload-rust-binary-action/pull/55#discussion_r1349880455 - warn "tag ref should start with 'refs/tags/': '${ref}'; this action only supports events from tag or release by default; see for more (downgraded error to info because action is running in dry-run mode)" + warn "tag ref should start with 'refs/tags/': '${ref}'; this action only supports events from tag or release by default; see for more (downgraded error to info because action is running in dry-run mode)" fi ref='refs/tags/dry-run' else - bail "tag ref should start with 'refs/tags/': '${ref}'; this action only supports events from tag or release by default; see for more" + bail "tag ref should start with 'refs/tags/': '${ref}'; this action only supports events from tag or release by default; see for more" fi fi tag="${ref#refs/tags/}"