Skip to content

Commit 4523a1b

Browse files
committed
fix(workflow): correct shell syntax error in git configuration step
1 parent 158a1e1 commit 4523a1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/auto-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
git config --local user.name "Kubit Release Bot"
152152
153153
# Set up authentication for push operations
154-
if [ -n "${{ secrets.RELEASE_TOKEN }}" ]; thenn
154+
if [ -n "${{ secrets.RELEASE_TOKEN }}" ]; then
155155
echo "🔐 Using RELEASE_TOKEN with branch protection bypass permissions"
156156
git remote set-url origin https://x-access-token:${{ secrets.RELEASE_TOKEN }}@github.com/${{ github.repository }}.git
157157
else

0 commit comments

Comments
 (0)