From f8cbeba5b3927940a79178852540f43e6dd29df0 Mon Sep 17 00:00:00 2001 From: cooney Date: Wed, 1 Apr 2026 02:20:58 +0900 Subject: [PATCH] Update .gitea/workflows/activation.yaml --- .gitea/workflows/activation.yaml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/activation.yaml b/.gitea/workflows/activation.yaml index 53356da..67b863f 100644 --- a/.gitea/workflows/activation.yaml +++ b/.gitea/workflows/activation.yaml @@ -1,19 +1,18 @@ -name: Unity-Activation-Final +name: Unity-Build-Latest on: [push] jobs: - activation: + build: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 # v3로 유지 + uses: actions/checkout@v3 - - name: Request activation file - uses: game-ci/unity-request-activation-file@v2 # 여기는 다시 v2로! 대신 내부 엔진은 최신을 씁니다. - id: get-alf - - - name: Upload artifact - uses: actions/upload-artifact@v3 # v3로 유지 + - name: Build Project + uses: game-ci/unity-builder@v3 # 최신 v3 사용 + env: + UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} + UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} with: - name: Unity-Activation-File - path: ${{ steps.get-alf.outputs.filePath }} \ No newline at end of file + targetPlatform: StandaloneWindows64 + # 라이선스 파일이 없어도 ID/PW로 시도하게 함 \ No newline at end of file