Update to test unity 2022.3.x #98
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: Checkout repository | |
uses: actions/checkout@v4 | |
# Unityのアクティベーション | |
- name: Activate Unity ${{ matrix.unityVersion }} | |
uses: game-ci/unity-activate@v4 | |
with: | |
unityVersion: ${{ matrix.unityVersion }} # Matrixで指定したUnityバージョンを使用 | |
unityEmail: ${{ secrets.UNITY_EMAIL }} # Unityのメールアドレスをシークレットに設定 | |
unityPassword: ${{ secrets.UNITY_PASSWORD }} # Unityのパスワードをシークレットに設定 | |
unitySerial: ${{ secrets.UNITY_SERIAL }} # Unityのシリアルキー(必要な場合) |