Build using most recent unity version for windows #36
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: Build Unity game | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build-on-ubuntu: | |
name: Build ${{ matrix.targetPlatform }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
targetPlatform: | |
- StandaloneWindows64 | |
- WebGL | |
- Android | |
- iOS | |
- StandaloneOSX | |
- StandaloneLinux64 | |
unityVersion: | |
- 2019.4.5f1 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Unity Builder | |
uses: game-ci/[email protected] | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
targetPlatform: ${{ matrix.targetPlatform }} | |
unityVersion: ${{ matrix.unityVersion }} | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Frog-${{ matrix.targetPlatform }} | |
path: build/${{ matrix.targetPlatform }} | |
build-on-windows: | |
name: Build ${{ matrix.targetPlatform }} | |
runs-on: windows-2022 | |
strategy: | |
matrix: | |
targetPlatform: | |
- WSAPlayer | |
- tvOS | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Unity Builder | |
uses: game-ci/[email protected] | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
targetPlatform: ${{ matrix.targetPlatform }} | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Frog-${{ matrix.targetPlatform }} | |
path: build/${{ matrix.targetPlatform }} |