From e1afa1ccb67f63b053503c3791d94eaf0b6f7d75 Mon Sep 17 00:00:00 2001 From: westofsky Date: Mon, 26 Aug 2024 02:45:43 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20workflow=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/sync-to-backend-repo.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync-to-backend-repo.yml b/.github/workflows/sync-to-backend-repo.yml index e34f2df6788..2f2590ade8e 100644 --- a/.github/workflows/sync-to-backend-repo.yml +++ b/.github/workflows/sync-to-backend-repo.yml @@ -38,7 +38,10 @@ jobs: git add . git commit -m "style: apply ui" - git push origin style/ui + + # Ensure the style/ui branch exists + git branch -M style/ui + git push -u origin style/ui env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}