From a8dd33f1f1c72436669c33111c9d31326d2d92cf Mon Sep 17 00:00:00 2001 From: cooney Date: Wed, 1 Apr 2026 05:18:34 +0900 Subject: [PATCH] Update .gitea/workflows/activation.yaml --- .gitea/workflows/activation.yaml | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/activation.yaml b/.gitea/workflows/activation.yaml index f6bec9a..25f2ef4 100644 --- a/.gitea/workflows/activation.yaml +++ b/.gitea/workflows/activation.yaml @@ -1,19 +1,21 @@ -name: Unity-Build-Latest +name: Unity-Activation-Final on: [push] jobs: - build: + activation: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - name: Build Project - uses: game-ci/unity-builder@v3 # 최신 v3 사용 - env: - UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} - UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} + - name: Request activation file + uses: game-ci/unity-request-activation-file@v2 # 안정적인 v2 사용 + id: get-alf with: - targetPlatform: StandaloneWindows64 - # 라이선스 파일이 없어도 ID/PW로 시도하게 함 - unityVersion: 6000.2.15f1 # 여기에 민구님 프로젝트 버전을 정확히 적습니다. \ No newline at end of file + unityVersion: 6000.2.15f1 # 민구님 프로젝트 버전 명시 + + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: Unity-ALF-File + path: ${{ steps.get-alf.outputs.filePath }} \ No newline at end of file