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

This commit is contained in:
2026-04-02 01:37:18 +09:00
parent 731de0f83f
commit 055b37b8a2

View File

@@ -23,14 +23,15 @@ jobs:
# 2. 작업장 권한 강제 부여 (Check)
sudo chmod -R 777 .
# 3. 유니티가 절대 못 헷갈리게 경로를 '현재 폴더(.)'로 매핑 (Check)
# 3. 도커 내부의 기본 작업 디렉토리를 /project로 고정 (Check)
docker run --rm \
-v "$(pwd):/project" \
-w /project \
-e UNITY_LICENSE="${{ secrets.UNITY_LICENSE }}" \
-e UNITY_EMAIL="${{ secrets.UNITY_EMAIL }}" \
-e UNITY_PASSWORD="${{ secrets.UNITY_PASSWORD }}" \
unityci/editor:ubuntu-6000.2.15f1-windows-mono-3 \
/bin/bash -c "cd /project && unity-editor -batchmode -quit -projectPath . -buildTarget StandaloneWindows64"
unity-editor -batchmode -quit -projectPath . -buildTarget StandaloneWindows64
- name: Upload Artifact
uses: actions/upload-artifact@v4