Skip to content

Commit

Permalink
Add all manual activation method
Browse files Browse the repository at this point in the history
  • Loading branch information
RyodoTanaka committed Oct 7, 2024
1 parent 48e8410 commit a73d414
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 27 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/activation.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/activation_all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Acquire activation files
on:
workflow_dispatch: {}

jobs:
activation:
name: Request manual activation files for multiple Unity versions 🔑
runs-on: ubuntu-latest
strategy:
matrix:
unityVersion:
- 2020.3.48f1
- 2021.3.42f1
- 2022.3.42f1
steps:
# GameCI の Activation を利用して alf ファイルを発行する
- name: Request manual activation file for Unity ${{ matrix.unityVersion }}
id: getManualLicenseFile
uses: game-ci/unity-request-activation-file@v2
with:
unityVersion: ${{ matrix.unityVersion }}

# アーティファクトのアップロード (Unity_v20XX.X.XXXX.alf)
- name: Expose artifact for Unity ${{ matrix.unityVersion }}
uses: actions/upload-artifact@v4
with:
name: Unity_${{ matrix.unityVersion }}_activation_file
path: ${{ steps.getManualLicenseFile.outputs.filePath }}

0 comments on commit a73d414

Please sign in to comment.