From 4523a1bf882dd7125d5b51c327d965b24195e6e9 Mon Sep 17 00:00:00 2001 From: n128691-sanhq_sangroup Date: Fri, 10 Oct 2025 06:06:24 +0200 Subject: [PATCH] fix(workflow): correct shell syntax error in git configuration step --- .github/workflows/auto-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-publish.yml b/.github/workflows/auto-publish.yml index 4b93e02..6af44f3 100644 --- a/.github/workflows/auto-publish.yml +++ b/.github/workflows/auto-publish.yml @@ -151,7 +151,7 @@ jobs: git config --local user.name "Kubit Release Bot" # Set up authentication for push operations - if [ -n "${{ secrets.RELEASE_TOKEN }}" ]; thenn + if [ -n "${{ secrets.RELEASE_TOKEN }}" ]; then echo "🔐 Using RELEASE_TOKEN with branch protection bypass permissions" git remote set-url origin https://x-access-token:${{ secrets.RELEASE_TOKEN }}@github.com/${{ github.repository }}.git else