forked from JohannesDeml/UnityWebGL-LoadingTest
-
Notifications
You must be signed in to change notification settings - Fork 0
167 lines (151 loc) · 6.01 KB
/
upgrade-unity.yml
File metadata and controls
167 lines (151 loc) · 6.01 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# Manually upgrade unity and update packages
# Check if the Unity version already exists as a docker image: https://game.ci/docs/docker/versions
name: Upgrade Unity version
on:
workflow_dispatch:
inputs:
unityVersion:
description: 'Unity Version'
required: true
type: string
createTags:
description: 'Create Tags'
required: false
type: boolean
default: true
urp:
description: 'URP branch'
required: true
type: boolean
default: false
tagsOnly:
description: 'Only create tags'
required: true
type: boolean
default: false
customParameters:
description: 'Custom cli arguments'
required: false
type: string
default: '-accept-apiupdate'
jobs:
upgrade-unity-version:
name: Upgrade Unity version and packages
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Log input parameter
run: |
echo "Upgrading to Unity Version: $UNITY_VERSION"
echo "Create tags: $CREATE_TAGS"
echo "URP branch: $URP_BRANCH"
echo "Custom cli arguments: $CUSTOM_PARAMETERS"
env:
UNITY_VERSION: ${{ inputs.unityVersion }}
CREATE_TAGS: ${{ inputs.createTags }}
URP_BRANCH: ${{ inputs.urp }}
TAGS_ONLY: ${{ inputs.tagsOnly }}
CUSTOM_PARAMETERS: ${{ inputs.customParameters }}
- uses: actions/checkout@v3
with:
fetch-depth: 0
lfs: true
# Makes sure, that pushing new tags will trigger workflows
token: ${{ secrets.PR_GITHUB_TOKEN }}
# Unity 2020 cache is not compatible with older versions
- name: Unity Library Cache 2020 or higher
if: ${{ !startsWith(inputs.unityVersion, '201') }}
uses: actions/cache@v3
with:
path: Library
key: Library-202x-WebGL
restore-keys: Library-202x-
- name: Unity Library Cache 2019 or lower
if: ${{ startsWith(inputs.unityVersion, '201') }}
uses: actions/cache@v3
with:
path: Library
key: Library-201x-WebGL
restore-keys: Library-201x-
- name: Set last unity version
id: last_unity_version
run: |
LAST_UNITY_VERSION=$(sed -n 's/^\m_EditorVersion: //p'< ./ProjectSettings/ProjectVersion.txt)
echo "VERSION=$LAST_UNITY_VERSION" >> $GITHUB_OUTPUT
- name: Set upgrade name
id: upgrade_name
run: |
if [[ "$URP_BRANCH" == "true" ]]
then
echo "NAME=$UNITY_VERSION-urp" >> $GITHUB_OUTPUT
else
echo "NAME=$UNITY_VERSION" >> $GITHUB_OUTPUT
fi
env:
UNITY_VERSION: ${{ inputs.unityVersion }}
URP_BRANCH: ${{ inputs.urp }}
- name: Log variables
run: |
echo "last_unity_version -> ${{ steps.last_unity_version.outputs.VERSION }}"
echo "upgrade_name -> ${{ steps.upgrade_name.outputs.NAME }}"
- name: Build project
if: ${{ !inputs.tagsOnly }}
uses: JohannesDeml/unity-builder@no-quit-parameter
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
with:
buildMethod: UnityBuilderAction.UnityPackageScripts.UpgradeAllPackagesToVerifiedVersion
customParameters: ${{ inputs.customParameters }}
unityVersion: ${{ inputs.unityVersion }}
targetPlatform: WebGL
buildName: ${{ needs.variables.outputs.BUILD_NAME }}
allowDirtyBuild: true
- name: Delete build folder with elevated rights
if: ${{ !inputs.tagsOnly }}
run: sudo rm -rf ./build
- name: Set git user
run: |
git status
git config --global user.email "$GIT_USER@users.noreply.github.com"
git config --global user.name "$GIT_USER"
env:
GIT_USER: ${{ github.actor }}
- name: Render template
if: ${{ !inputs.tagsOnly }}
id: template
uses: chuhlomin/render-template@v1.4
with:
template: .github/templates/upgrade-unity-pr-body.md
vars: |
unityversion: ${{ steps.upgrade_name.outputs.NAME }}
- name: Create Pull Request
if: ${{ !inputs.tagsOnly }}
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.PR_GITHUB_TOKEN }}
commit-message: "[Automated workflow] upgrade-unity from ${{steps.last_unity_version.outputs.VERSION}} to ${{ inputs.unityVersion }}"
branch: "ci/upgrade-unity/from-${{steps.last_unity_version.outputs.VERSION}}-to-${{ steps.upgrade_name.outputs.NAME }}"
delete-branch: true
title: "[Automated workflow] upgrade-unity from ${{steps.last_unity_version.outputs.VERSION}} to ${{ steps.upgrade_name.outputs.NAME }}"
body: ${{ steps.template.outputs.result }}
- name: Add tags
if: ${{ inputs.createTags || inputs.tagsOnly }}
run: |
if [[ "$URP_BRANCH" == "true" ]]
then
git tag -a -f $UNITY_VERSION-urp-webgl1 -m "[Automated workflow] Created by upgrade-unity"
git tag -a -f $UNITY_VERSION-urp-webgl2 -m "[Automated workflow] Created by upgrade-unity"
git tag -a -f $UNITY_VERSION-urp-webgl2-debug -m "[Automated workflow] Created by upgrade-unity"
else
git tag -a -f $UNITY_VERSION-minsize-webgl1 -m "[Automated workflow] Created by upgrade-unity"
git tag -a -f $UNITY_VERSION-webgl1 -m "[Automated workflow] Created by upgrade-unity"
git tag -a -f $UNITY_VERSION-webgl2 -m "[Automated workflow] Created by upgrade-unity"
# Push tags in between - pushing more than 3 tags won't trigger tag workflows
git push origin -f --tags
git tag -a -f $UNITY_VERSION-webgl2-debug -m "[Automated workflow] Created by upgrade-unity"
fi
git push origin -f --tags
env:
UNITY_VERSION: ${{ inputs.unityVersion }}
URP_BRANCH: ${{ inputs.urp }}