mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-08 18:55:07 +00:00
c2f7fa1a32
* Update main.yml * Create macos.yml * Create linux.yml * Rename main.yml to windows.yml * Update README.md
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
name: Build Windows
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build for ${{ matrix.targetPlatform }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
targetPlatform:
|
|
- StandaloneWindows64
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
# with:
|
|
# lfs: true
|
|
|
|
# Cache resued Library files to speed up compilation
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: Library
|
|
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
|
|
restore-keys: |
|
|
Library-
|
|
|
|
# Test (No tests yet, leaving this here for future.)
|
|
# - name: Run tests
|
|
# uses: game-ci/unity-test-runner@v2
|
|
# env:
|
|
# UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
|
|
# with:
|
|
# githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# Build project with Unity
|
|
- name: Build project
|
|
uses: game-ci/unity-builder@v2
|
|
env:
|
|
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
|
|
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
|
|
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
|
|
with:
|
|
unityVersion: auto
|
|
buildName: Heaven Studio
|
|
buildsPath: build
|
|
targetPlatform: ${{ matrix.targetPlatform }}
|
|
|
|
# Output
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ matrix.targetPlatform }}-build
|
|
path: ./build/${{ matrix.targetPlatform }}/
|