You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| codesign || Sign build products using `codesign` on macOS | String ||
59
60
| codesign-prefix || Prefix for the `codesign` identifier on macOS | String ||
60
61
| codesign-options || Specifies a set of option flags to be embedded in the code signature on macOS. See the `codesign` manpage for details. | String ||
warn "tag ref should start with 'refs/tags/': '${ref}'; this action only supports events from tag or release by default; see <https://github.com/taiki-e/create-gh-release-action#supported-events> for more (downgraded error to info because action is running in dry-run mode)"
72
+
if [[ -z"${dry_run_intended}" ]];then
73
+
# TODO: The warnings are somewhat noisy if we have a lot of build matrix:
warn "tag ref should start with 'refs/tags/': '${ref}'; this action only supports events from tag or release by default; see <https://github.com/taiki-e/create-gh-release-action#supported-events> for more (downgraded error to info because action is running in dry-run mode)"
76
+
fi
65
77
ref='refs/tags/dry-run'
66
78
else
67
79
bail "tag ref should start with 'refs/tags/': '${ref}'; this action only supports events from tag or release by default; see <https://github.com/taiki-e/create-gh-release-action#supported-events> for more"
@@ -562,8 +574,10 @@ for checksum in ${checksums[@]+"${checksums[@]}"}; do
562
574
done
563
575
564
576
if [[ -n"${dry_run}" ]];then
565
-
info "skipped upload because action is running in dry-run mode"
566
-
printf"tag: %s ('dry-run' if tag ref is not start with 'refs/tags/')\n""${tag}"
577
+
if [[ -z"${dry_run_intended}" ]];then
578
+
info "skipped upload because action is running in dry-run mode"
579
+
printf"tag: %s ('dry-run' if tag ref is not start with 'refs/tags/')\n""${tag}"
0 commit comments