Skip to content

Commit 7ead4f6

Browse files
committed
hotfix: 배포 충돌 해결
1 parent a940d25 commit 7ead4f6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ jobs:
3030
git config user.name farmsystem-account
3131
git config user.email ${{ secrets.EMAIL }}
3232
33+
# 게임 애들꺼 push 제외
34+
- name: Exclude Unity WebGL build (deploy-only)
35+
run: |
36+
# Remove from index if present, but do not fail if missing
37+
git rm -r --cached --ignore-unmatch apps/farminglog/public/WebGLBuild || true
38+
# Create a temporary commit only in the workflow context
39+
git commit -m "chore(ci): exclude apps/farminglog/public/WebGLBuild from deploy sync" || echo "No changes to commit"
40+
3341
- name: Push changes to forked-repo
3442
run: |
3543
git push -f forked-repo ${{ env.TARGET_BRANCH }}

0 commit comments

Comments
 (0)