diff --git a/.gitea/workflows/activation.yaml b/.gitea/workflows/activation.yaml index dd86d22..6d99fdd 100644 --- a/.gitea/workflows/activation.yaml +++ b/.gitea/workflows/activation.yaml @@ -1,4 +1,4 @@ -name: Unity-ALF-Ultimate +name: Unity-ALF-Ultimate-Fix on: [push] jobs: @@ -10,7 +10,7 @@ jobs: - name: Force Generate ALF run: | - # 이미 받아놓으신 이미지를 사용하여 컨테이너 안에서 유니티 명령어를 직접 실행합니다. + # 현재 작업 디렉토리($(pwd))를 컨테이너의 /project에 확실히 연결합니다. docker run --rm \ -v "$(pwd):/project" \ -w /project \ @@ -21,9 +21,12 @@ jobs: -createManualActivationFile \ -logfile /dev/stdout \ -quit + + # 파일이 제대로 생겼는지 확인 (로그에 파일 이름이 떠야 함) + ls -al *.alf - name: Upload ALF uses: actions/upload-artifact@v3 with: name: Unity-Manual-ALF - path: ./*.alf \ No newline at end of file + path: ./*.alf # 이제 파일이 있으니 업로드될 겁니다! \ No newline at end of file