-
Notifications
You must be signed in to change notification settings - Fork 135
44 lines (42 loc) · 1.31 KB
/
build-pal3a-mono-ios.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
name: Builds - PAL3A - Mono - iOS
on: [push, pull_request]
jobs:
build_pal3a_mono_ios:
name: Build PAL3A for ${{ matrix.targetPlatform }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
targetPlatform:
- iOS # Build an iOS player.
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
lfs: true
- name: Switch define symbol from PAL3 to PAL3A
uses: jacobtomlinson/gha-find-replace@v3
with:
find: "PAL3"
replace: "PAL3A"
include: "**ProjectSettings.asset"
- name: Replace PAL3 game icon with PAL3A one
uses: jacobtomlinson/gha-find-replace@v3
with:
find: "6b32649dccc45df4ebe8e3f8eccee249"
replace: "d03d417e5660d5849939c8fe43732dbd"
include: "**ProjectSettings.asset"
- uses: actions/[email protected]
with:
path: Library
key: Library-${{ matrix.targetPlatform }}
restore-keys: Library-
- uses: game-ci/unity-builder@v2
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
with:
allowDirtyBuild: true
targetPlatform: ${{ matrix.targetPlatform }}
buildName: PAL3A
versioning: Semantic
# do not upload artifacts for iOS builds