From 8ddac9a56dfc84f7ca0d3b9eb6668308a8c9e53d Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Fri, 6 Feb 2026 20:42:46 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Update=20push=20command=20in=20C?= =?UTF-8?q?I=20workflow=20for=20release=20branch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Modified the push command in the CI workflow to correctly target the release branch for deployment. This ensures that changes are pushed to the appropriate branch, enhancing the deployment process. --- .gitea/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 71b1fb3..98bc03e 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -127,7 +127,7 @@ jobs: git add -f "argocd/deployment/*" || true git checkout -b release/${{ gitea.ref_name }}-deploy || git checkout release/${{ gitea.ref_name }}-deploy git commit -m "Build Auto Commit" || echo "No changes to commit" - git push origin HEAD:${{ gitea.ref_name }} -o ci.skip || echo "No changes to push" + git push origin release/${{ gitea.ref_name }} -o ci.skip || echo "No changes to push" - name: 🚀 ✨ Create Pull Request uses: peter-evans/create-pull-request@v7 @@ -139,4 +139,4 @@ jobs: title: "🚀 ✨ Release ${GITHUB_REF_NAME} - Deploy" branch: release/${{ gitea.ref_name }}-deploy committer: "Gitea Action 🤖 " - body: "📝 🔄 Update deployment manifest with new image tags for release ${GITHUB_REF_NAME}" \ No newline at end of file + body: "📝 🔄 Update deployment manifest with new image tags for release ${{ gitea.ref_name }}" \ No newline at end of file