-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (59 loc) · 2.23 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Build and Upload Artifacts
on:
# Rebuild on merged pull requests
pull_request:
branches:
- main
# Allows running this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: Build for ${{ matrix.targetPlatform }}
runs-on: ubuntu-latest
environment: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
id-token: write # to verify the deployment originates from an appropriate source
strategy:
fail-fast: false
matrix:
targetPlatform:
- StandaloneWindows64 # Build for Windows
- StandaloneOSX # Build for macOS (Intel)
- StandaloneLinux64 # Build for Linux
- WebGL # Build for WebGL
steps:
# Checkout
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: false
# Cache
- name: Cache Unity packages
uses: actions/cache@v3
with:
path: Library
key: Library-${{ matrix.targetPlatform }}
restore-keys: Library-x
# Build
- name: Build with Unity Builder
uses: game-ci/unity-builder@v4
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
with:
targetPlatform: ${{ matrix.targetPlatform }}
# Output
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: Build-${{ matrix.targetPlatform }}
path: build/${{ matrix.targetPlatform }}
# Deploy (WebGL)
- name: Deploy WebGL build to GitHub Pages
if: ${{ matrix.targetPlatform == 'WebGL' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/${{ matrix.targetPlatform }}