-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48e8410
commit a73d414
Showing
2 changed files
with
28 additions
and
27 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |