From efabda309b2f611a193d42594517f7ebc0a1dd77 Mon Sep 17 00:00:00 2001 From: autoupdate Date: Wed, 19 Jul 2023 23:41:08 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Don't=20sign=20tag=20during=20au?= =?UTF-8?q?toupdate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a temporary restriction since during the implementation of building the autoupdate functionality and the pipeline handling GPG additionally would be a bit too much at once. Refs: #8 --- update-new-version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-new-version.sh b/update-new-version.sh index 2037b60..c3b0865 100755 --- a/update-new-version.sh +++ b/update-new-version.sh @@ -63,5 +63,5 @@ git switch main git merge --ff-only version-"$new" git push origin main -git tag -s v"$new" "Upstream version $new" +git tag -a v"$new" "Upstream version $new" git push --tags origin main