Skip to content

Commit

Permalink
Update activation.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsubasa-alife committed Nov 3, 2023
1 parent d2cdc19 commit d4b4a1e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/activation.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: Acquire activation file # Action名 なんでもいいがわかりやすいほうが良い
on: # このActionsを実行するタイミングの指定
workflow_dispatch: {} # workflow_dispatchは手動で実行ボタンを押したときに実行される 他にもpushされた時とかpull_requetsされた時などを指定できる。
name: Acquire activation file
on:
workflow_dispatch: {}
jobs:
activation:
name: Request manual activation file
runs-on: ubuntu-latest # 動作するOSを制作する ubuntu以外にwindowsやmac-osが選べるが課金体系に注意!
name: Request manual activation file 🔑
runs-on: ubuntu-latest
steps:
- name: Request manual activation file # Licenceを要求する部分
id: getManualLicenseFile
uses: game-ci/unity-request-activation-file@v3
with:
unityVersion: 2022.3.12f1
- name: Expose as artifact #取得した.alfファイルをアップロードする部分
uses: actions/upload-artifact@v3
with:
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
path: ${{ steps.getManualLicenseFile.outputs.filePath }}
# Request manual activation file
- name: Request manual activation file
id: getManualLicenseFile
uses: game-ci/unity-request-activation-file@v2
# Upload artifact (Unity_v20XX.X.XXXX.alf)
- name: Expose as artifact
uses: actions/upload-artifact@v2
with:
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
path: ${{ steps.getManualLicenseFile.outputs.filePath }}

0 comments on commit d4b4a1e

Please sign in to comment.