Update to test unity 2022.3.x #97
Workflow file for this run
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
name: Acquire multiple activation files | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
activation: | |
name: Request activation files for multiple Unity versions 🔑 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
unityVersion: | |
- 2020.3.48f1 | |
- 2021.3.42f1 | |
- 2022.3.42f1 | |
steps: | |
# 手動アクティベーションファイルのリクエスト | |
- name: Request manual activation file for Unity ${{ matrix.unityVersion }} | |
id: getManualLicenseFile | |
uses: game-ci/unity-request-manual-activation-file@v4 | |
with: | |
unityVersion: ${{ matrix.unityVersion }} # Matrixで指定したUnityバージョンを使用 | |
# アーティファクトのアップロード | |
- name: Expose artifact for Unity ${{ matrix.unityVersion }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Unity_${{ matrix.unityVersion }}_activation_file # バージョンごとのアーティファクト名 | |
path: ${{ steps.getManualLicenseFile.outputs.filePath }} # ファイルパスを使用 |