clean up #2
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: Unity 2020.3 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-test: | |
name: Test Building (Unity 2020.3) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout blank project | |
uses: actions/checkout@v4 | |
with: | |
repository: game-ci/unity-builder | |
sparse-checkout: dist/BlankProject | |
- run: mv dist/BlankProject/* ./ | |
- uses: actions/checkout@v4 | |
with: | |
path: Packages/WorkBoard | |
- uses: game-ci/unity-builder@v4 | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
targetPlatform: StandaloneLinux64 | |
unityVersion: 2020.3.48f1 | |
allowDirtyBuild: true |