6
6
7
7
env :
8
8
UNITY_LICENSE : ${{ secrets.UNITY_LICENSE }}
9
- UNITY_VERSION : 2020.1.7f1
10
9
PROJECT_PATH : .
11
10
12
11
jobs :
30
29
# Request manual activation file
31
30
- name : Request manual activation file
32
31
id : getManualLicenseFile
33
- uses : webbertakken/unity-request-manual-activation-file@main
32
+ # https://github.com/game-ci/unity-request-activation-file/releases/
33
+ uses : game-ci/unity-request-manual-activation-file@v2.0-alpha-1
34
34
with :
35
35
unityVersion : ${{ env.UNITY_VERSION }}
36
36
# Upload artifact (Unity_v20XX.X.XXXX.alf)
@@ -56,14 +56,15 @@ jobs:
56
56
restore-keys : |
57
57
Library-test-project-
58
58
Library-
59
- - uses : webbertakken/unity-test-runner@v1.7
59
+ # https://github.com/game-ci/unity-test-runner/releases/
60
+ - uses : game-ci/unity-test-runner@v2.0-alpha-2
60
61
id : testRunner
61
62
with :
62
63
projectPath : ${{ env.PROJECT_PATH }}
63
64
unityVersion : ${{ env.UNITY_VERSION }}
64
65
testMode : all
65
66
customParameters : " -nographics"
66
- - uses : actions/upload-artifact@v1
67
+ - uses : actions/upload-artifact@v2
67
68
with :
68
69
name : Test results (all modes)
69
70
path : ${{ steps.testRunner.outputs.artifactsPath }}
78
79
matrix :
79
80
targetPlatform :
80
81
- StandaloneOSX
82
+ - StandaloneWindows
81
83
- StandaloneWindows64
82
84
- StandaloneLinux64
85
+ - iOS
86
+ - Android
87
+ # See https://github.com/game-ci/docker/issues/53 webgl will be supported in editor image v0.9
88
+ # - WebGL
83
89
steps :
84
90
- uses : actions/checkout@v2
85
91
with :
@@ -91,12 +97,13 @@ jobs:
91
97
restore-keys : |
92
98
Library-${{ matrix.projectPath }}-
93
99
Library-
94
- - uses : webbertakken/unity-builder@v2.0-aplha-5
100
+ # https://github.com/game-ci/unity-builder/releases/
101
+ - uses : game-ci/unity-builder@v2.0-alpha-6
95
102
with :
96
103
projectPath : ${{ env.PROJECT_PATH }}
97
104
unityVersion : ${{ env.UNITY_VERSION }}
98
105
targetPlatform : ${{ matrix.targetPlatform }}
99
106
- uses : actions/upload-artifact@v2
100
107
with :
101
- name : Build
108
+ name : Build-${{ matrix.targetPlatform }}
102
109
path : build
0 commit comments