This repository has been archived by the owner on Feb 15, 2025. It is now read-only.
Build exe for Windows Standalone #19
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 Project | |
run-name: Build exe for Windows Standalone | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
with: | |
path: Library | |
key: Library-StandaloneWindows | |
restore-keys: Library-StandaloneWindows | |
- uses: game-ci/unity-builder@v4.2.1 | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
targetPlatform: StandaloneWindows | |
versioning: Semantic | |
buildName: MajdataView | |
- run: ls -R | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Build | |
path: build |