From f901d4e67d508707c470c90693e6ab3d08d8f646 Mon Sep 17 00:00:00 2001 From: Mathias Bergqvist Date: Sun, 19 Apr 2026 19:16:22 +0200 Subject: [PATCH] fix(ci): use --follow-tags instead of --tags to avoid re-pushing existing tags --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d8ca26a..d515c70 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -53,6 +53,6 @@ jobs: chmod 600 ~/.ssh/id_rsa_gh_mirror ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null GIT_SSH_COMMAND="ssh -i ~/.ssh/id_rsa_gh_mirror -o IdentitiesOnly=yes" \ - git push git@github.com:mathiasb/hyperguild.git HEAD:main --tags + git push git@github.com:mathiasb/hyperguild.git HEAD:main --follow-tags rm ~/.ssh/id_rsa_gh_mirror echo "✓ Mirrored to GitHub"