From 4d99ab9a4e66df99a88de75102e79b2967f70eea Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Tue, 21 Apr 2026 21:33:11 -0500 Subject: [PATCH] fix: git push -u origin HEAD for version branch (no upstream) Co-Authored-By: Claude Opus 4.6 (1M context) --- templates/workflows/joomla/auto-release.yml.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/workflows/joomla/auto-release.yml.template b/templates/workflows/joomla/auto-release.yml.template index 1858587..8da0049 100644 --- a/templates/workflows/joomla/auto-release.yml.template +++ b/templates/workflows/joomla/auto-release.yml.template @@ -384,7 +384,7 @@ jobs: git add -A git commit -m "chore(release): build ${VERSION} [skip ci]" \ --author="gitea-actions[bot] " - git push + git push -u origin HEAD # -- STEP 6: Create tag --------------------------------------------------- - name: "Step 6: Create git tag"