We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a940d25 commit 7ead4f6Copy full SHA for 7ead4f6
.github/workflows/deploy.yml
@@ -30,6 +30,14 @@ jobs:
30
git config user.name farmsystem-account
31
git config user.email ${{ secrets.EMAIL }}
32
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
+
41
- name: Push changes to forked-repo
42
run: |
43
git push -f forked-repo ${{ env.TARGET_BRANCH }}
0 commit comments