fix: use git push instead of GitHub API for tag creation
Docker Build and Push / build (pull_request) Successful in 3m1s

GIT_API_TAGGING defaults to true, which tries to create tags via the
GitHub REST API (api.github.com). On self-hosted Gitea, this fails.
Setting it to false uses git push origin <tag> instead, which works
with the credentials configured by actions/checkout.
This commit is contained in:
2026-06-12 12:47:40 -04:00
parent be4711f646
commit f1d828bfe3
+1
View File
@@ -55,3 +55,4 @@ jobs:
DEFAULT_BUMP: patch DEFAULT_BUMP: patch
RELEASE_BRANCHES: main RELEASE_BRANCHES: main
WITH_V: true WITH_V: true
GIT_API_TAGGING: false