Update .gitea/workflows/build.yaml
Some checks failed
Unity-Cross-Platform-Build / Build for StandaloneOSX (push) Failing after 41s
Unity-Cross-Platform-Build / Build for StandaloneWindows64 (push) Failing after 37s

This commit is contained in:
2026-04-02 01:28:34 +09:00
parent ff4e932646
commit 1f5857b314

View File

@@ -20,14 +20,14 @@ jobs:
# 1. 작업장 권한 강제 부여 (Check) # 1. 작업장 권한 강제 부여 (Check)
sudo chmod -R 777 . sudo chmod -R 777 .
# 2. 생 도커로 빌드 (파일 경로 꼬임 원천 차단) (Check) # 2. 생 도커로 빌드 (경로 인식 수정) (Check)
docker run --rm \ docker run --rm \
-v $(pwd):/project \ -v "$(pwd):/project" \
-e UNITY_LICENSE="${{ secrets.UNITY_LICENSE }}" \ -e UNITY_LICENSE="${{ secrets.UNITY_LICENSE }}" \
-e UNITY_EMAIL="${{ secrets.UNITY_EMAIL }}" \ -e UNITY_EMAIL="${{ secrets.UNITY_EMAIL }}" \
-e UNITY_PASSWORD="${{ secrets.UNITY_PASSWORD }}" \ -e UNITY_PASSWORD="${{ secrets.UNITY_PASSWORD }}" \
unityci/editor:ubuntu-6000.2.15f1-windows-mono-3 \ unityci/editor:ubuntu-6000.2.15f1-windows-mono-3 \
/bin/bash -c "unity-editor -batchmode -quit -projectPath /project -buildTarget StandaloneWindows64 -buildWindows64Player /project/build/StandaloneWindows64/MyGame.exe" /bin/bash -c "unity-editor -batchmode -quit -projectPath /project -buildTarget StandaloneWindows64"
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4