From ae18eb7ba8e25c98d63ec8e3b791143ef3097c0c Mon Sep 17 00:00:00 2001 From: cooney Date: Wed, 1 Apr 2026 02:02:22 +0900 Subject: [PATCH] Update .gitea/workflows/activation.yaml --- .gitea/workflows/activation.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/activation.yaml b/.gitea/workflows/activation.yaml index da5fc67..c561e5b 100644 --- a/.gitea/workflows/activation.yaml +++ b/.gitea/workflows/activation.yaml @@ -1,14 +1,19 @@ -name: Get Unity Activation File -on: [workflow_dispatch] # 수동으로 실행하는 버튼입니다. +name: Unity-Activation-v4 +on: [push] jobs: activation: runs-on: ubuntu-latest steps: + - name: Checkout code + uses: actions/checkout@v4 # v3에서 v4로 업데이트 + - name: Request activation file - uses: game-ci/unity-request-activation-file@v2 + uses: game-ci/unity-request-activation-file@v4 # v4로 업데이트 + id: get-alf + - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 # v4로 업데이트 with: - name: Unity_v20XX.alf # 생성된 파일을 다운로드 받으세요. - path: ./*.alf \ No newline at end of file + name: Unity-Activation-File + path: ${{ steps.get-alf.outputs.filePath }} \ No newline at end of file