-
Notifications
You must be signed in to change notification settings - Fork 74
246 lines (221 loc) · 7.76 KB
/
installer-release.yml
File metadata and controls
246 lines (221 loc) · 7.76 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
name: Installer Release
on:
workflow_call:
inputs:
version:
description: 'Release version (e.g., v11.2.0)'
required: true
type: string
version_major:
description: 'Major version (v10 or v11)'
required: true
type: string
environment:
description: 'Environment (dev or rc)'
required: true
type: string
prerelease:
description: 'Whether this is a prerelease'
required: false
type: boolean
default: false
changelog:
description: 'Changelog content for the release body'
required: false
type: string
default: ''
secrets:
API_SECRET:
required: false
CM_ENCRYPT_SALT:
required: false
CM_SIGN_PUBLIC_KEY:
required: false
jobs:
# ============================================
# V10 DEV - Deploy to runner only
# ============================================
deploy_v10_dev:
name: Deploy V10 to Dev Runner
runs-on: utmstack-v10-dev
if: inputs.version_major == 'v10' && inputs.environment == 'dev'
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.20
- name: Build and Deploy
working-directory: ./installer
env:
GOOS: linux
GOARCH: amd64
run: |
echo "Building V10 Installer for dev environment"
go build -o installer -v .
mv installer /home/utmstack/installer
chmod +x /home/utmstack/installer
- name: Run Installer
working-directory: /home/utmstack
run: |
sudo ./installer
# ============================================
# V10 RC - Deploy to runner
# ============================================
deploy_v10_rc_runner:
name: Deploy V10 to RC Runner
runs-on: utmstack-v10-rc
if: inputs.version_major == 'v10' && inputs.environment == 'rc'
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.20
- name: Build and Deploy
working-directory: ./installer
env:
GOOS: linux
GOARCH: amd64
run: |
echo "Building V10 Installer for rc environment"
go build -o installer -v .
mv installer /home/utmstack/installer
chmod +x /home/utmstack/installer
- name: Run Installer
working-directory: /home/utmstack
run: |
sudo ./installer
# ============================================
# V10 RC - Upload to prerelease
# ============================================
deploy_v10_rc_prerelease:
name: Upload V10 Installer to Prerelease
runs-on: ubuntu-24.04
if: inputs.version_major == 'v10' && inputs.environment == 'rc'
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.20
- name: Prepare changelog
id: changelog
env:
CHANGELOG_CONTENT: ${{ inputs.changelog }}
run: |
printf '%s' "$CHANGELOG_CONTENT" > /tmp/CHANGELOG.md
- name: Build
working-directory: ./installer
env:
GOOS: linux
GOARCH: amd64
run: |
echo "Building V10 Installer for prerelease"
go build -o installer -v .
- name: Upload Release Assets
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ inputs.version }}
body_path: /tmp/CHANGELOG.md
draft: false
prerelease: ${{ inputs.prerelease }}
files: |
./installer/installer
# ============================================
# V11 DEV - Deploy to runner with dev branch
# ============================================
deploy_v11_dev:
name: Deploy V11 to Dev Runner
runs-on: utmstack-v11-dev
if: inputs.version_major == 'v11' && inputs.environment == 'dev'
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.20
- name: Configure git for private modules
run: |
git config --global url."https://${{ secrets.API_SECRET }}:x-oauth-basic@github.com/".insteadOf "https://github.com/"
echo "GOPRIVATE=github.com/utmstack" >> $GITHUB_ENV
echo "GONOPROXY=github.com/utmstack" >> $GITHUB_ENV
echo "GONOSUMDB=github.com/utmstack" >> $GITHUB_ENV
- name: Build and Deploy
working-directory: ./installer
env:
GOOS: linux
GOARCH: amd64
GOPRIVATE: github.com/utmstack
GONOPROXY: github.com/utmstack
GONOSUMDB: github.com/utmstack
run: |
echo "Building V11 Installer for dev environment (branch=dev)"
go build -o installer -v -ldflags "\
-X 'github.com/utmstack/UTMStack/installer/config.DEFAULT_BRANCH=dev' \
-X 'github.com/utmstack/UTMStack/installer/config.INSTALLER_VERSION=${{ inputs.version }}' \
-X 'github.com/utmstack/UTMStack/installer/config.REPLACE=${{ secrets.CM_ENCRYPT_SALT }}' \
-X 'github.com/utmstack/UTMStack/installer/config.PUBLIC_KEY=${{ secrets.CM_SIGN_PUBLIC_KEY }}'" .
mv installer /usr/local/bin/utmstack_installer
chmod +x /usr/local/bin/utmstack_installer
- name: Run Installer
run: |
sudo /usr/local/bin/utmstack_installer
# ============================================
# V11 RC - Upload to prerelease only
# ============================================
build_v11_rc:
name: Build V11 Installer for Prerelease
runs-on: ubuntu-24.04
if: inputs.version_major == 'v11' && inputs.environment == 'rc'
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.20
- name: Configure git for private modules
run: |
git config --global url."https://${{ secrets.API_SECRET }}:x-oauth-basic@github.com/".insteadOf "https://github.com/"
echo "GOPRIVATE=github.com/utmstack" >> $GITHUB_ENV
echo "GONOPROXY=github.com/utmstack" >> $GITHUB_ENV
echo "GONOSUMDB=github.com/utmstack" >> $GITHUB_ENV
- name: Prepare changelog
id: changelog
env:
CHANGELOG_CONTENT: ${{ inputs.changelog }}
run: |
printf '%s' "$CHANGELOG_CONTENT" > /tmp/CHANGELOG.md
- name: Build
working-directory: ./installer
env:
GOOS: linux
GOARCH: amd64
GOPRIVATE: github.com/utmstack
GONOPROXY: github.com/utmstack
GONOSUMDB: github.com/utmstack
run: |
echo "Building V11 Installer for prerelease (branch=prod)"
go build -o installer -v -ldflags "\
-X 'github.com/utmstack/UTMStack/installer/config.DEFAULT_BRANCH=prod' \
-X 'github.com/utmstack/UTMStack/installer/config.INSTALLER_VERSION=${{ inputs.version }}' \
-X 'github.com/utmstack/UTMStack/installer/config.REPLACE=${{ secrets.CM_ENCRYPT_SALT }}' \
-X 'github.com/utmstack/UTMStack/installer/config.PUBLIC_KEY=${{ secrets.CM_SIGN_PUBLIC_KEY }}'" .
- name: Upload Release Assets
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ inputs.version }}
body_path: /tmp/CHANGELOG.md
draft: false
prerelease: ${{ inputs.prerelease }}
files: |
./installer/installer