Update .gitea/workflows/activation.yaml
This commit is contained in:
@@ -1,25 +1,29 @@
|
|||||||
name: Unity-Manual-ALF
|
name: Unity-ALF-Ultimate
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
activation:
|
activation:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
|
||||||
image: unityci/editor:ubuntu-2022.3.20f1-base-3 # 이미 받아놓으신 이미지 사용
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Manual Activation File Generation
|
- name: Force Generate ALF
|
||||||
run: |
|
run: |
|
||||||
|
# 이미 받아놓으신 이미지를 사용하여 컨테이너 안에서 유니티 명령어를 직접 실행합니다.
|
||||||
|
docker run --rm \
|
||||||
|
-v "$(pwd):/project" \
|
||||||
|
-w /project \
|
||||||
|
unityci/editor:ubuntu-2022.3.20f1-base-3 \
|
||||||
unity-editor \
|
unity-editor \
|
||||||
-batchmode \
|
-batchmode \
|
||||||
-nographics \
|
-nographics \
|
||||||
-createManualActivationFile \
|
-createManualActivationFile \
|
||||||
|
-logfile /dev/stdout \
|
||||||
-quit
|
-quit
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload ALF
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: Unity-ALF-File
|
name: Unity-Manual-ALF
|
||||||
path: ./*.alf
|
path: ./*.alf
|
||||||
Reference in New Issue
Block a user