Skip to content

Commit d9458fa

Browse files
authored
modify: 버전 명시 수정
1 parent cd22b80 commit d9458fa

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/activate.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@ jobs:
99
- name: Checkout repository
1010
uses: actions/checkout@v4
1111

12-
# 1. .alf 파일 생성 (이 액션이 요청 파일을 만들어줍니다)
12+
# 최신 방식: unity-activate 액션만 사용합니다.
1313
- name: Request activation file
14-
uses: game-ci/unity-request-activation-file@v2
15-
id: get_alf
14+
uses: game-ci/unity-activate@v2
15+
id: activation
16+
with:
17+
unityVersion: 6000.0.68f1 # 사용하시는 유니티 버전을 명시하세요.
1618

17-
# 2. 생성된 .alf 파일을 Artifact로 업로드
1819
- name: Upload .alf artifact
1920
uses: actions/upload-artifact@v4
2021
with:
21-
name: Unity-Activation-File
22-
# 중요: 위 스텝의 ID를 참조하여 경로를 지정합니다.
23-
path: ${{ steps.get_alf.outputs.filePath }}
22+
name: activation-file
23+
# 위 스텝에서 생성된 .alf 파일 경로를 참조합니다.
24+
path: ${{ steps.activation.outputs.filePath }}

0 commit comments

Comments
 (0)