From 3cc8a50bc077f463237a2b93e8c4c0d46fcd4f78 Mon Sep 17 00:00:00 2001 From: forkless Date: Mon, 1 Jun 2026 12:16:31 +0200 Subject: [PATCH] Auto-tag and push in build script --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index a43c3d9..2177515 100755 --- a/build.sh +++ b/build.sh @@ -58,4 +58,5 @@ echo "=== Done ===" # Sign and push the tag to trigger CI release echo "" echo "--- Tag & Release ---" -echo " git tag -s v${VERSION} -m 'v${VERSION}' && git push origin v${VERSION}" +export GPG_TTY=$(tty 2>/dev/null || echo "") +git tag -s "v${VERSION}" -m "v${VERSION}" && git push origin "v${VERSION}"