-
Notifications
You must be signed in to change notification settings - Fork 227
384 lines (363 loc) · 12.2 KB
/
octoprint-release.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
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
name: Deploy Images
on:
repository_dispatch:
types: [deploy, released, prereleased, canary, bleeding]
push:
branches:
- master
jobs:
meta:
runs-on: ubuntu-latest
outputs:
labels: ${{ steps.metadata.outputs.labels }}
steps:
-
id: metadata
uses: crazy-max/ghaction-docker-meta@v1
with:
images: octoprint/octoprint
# this job should build and publish the main octoprint image for the given tag, but
# should not publish the 'latest' tag unless the given tag from payload is
# equal to the latest (stable) release tag of octoprint
release_main_on_dispatch:
if: github.event_name == 'repository_dispatch' && github.repository_owner == 'OctoPrint'
needs: meta
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v2
-
name: Get latest Octoprint
id: latest-octoprint
uses: pozetroninc/github-action-get-latest-release@master
with:
owner: OctoPrint
repo: OctoPrint
excludes: draft
-
name: Get latest stable Octoprint
id: stable-octoprint
uses: pozetroninc/github-action-get-latest-release@master
with:
owner: OctoPrint
repo: OctoPrint
excludes: prerelease,draft
-
run: echo "latest stable release ${{ steps.stable-octoprint.outputs.release }}"
-
name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
with:
platforms: arm,arm64
-
name: Set up Buildx
uses: docker/setup-buildx-action@v1
-
name: Cache Docker Layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ hashfiles('**/Dockerfile') }}
restore-keys: |
${{ runner.os }}-buildx-
-
id: buildxy
run: echo '::set-output name=buildxy::${{ (github.event.action == 'deploy'|| github.event.action == 'released') && github.event.client_payload.tag_name == steps.stable-octoprint.outputs.release }}'
-
name: Tagging Strategy
id: tagging
uses: HackerHappyHour/tagging-strategy@v3
with:
image_name: octoprint/octoprint
tag_name: ${{ github.event.client_payload.tag_name }}
tags: |
%X%::${{ steps.buildxy.outputs.buildxy }}
%X.Y%::${{ steps.buildxy.outputs.buildxy }}
%X.Y.Z%
extra_tags: |
latest::${{ steps.stable-octoprint.outputs.release == github.event.client_payload.tag_name }}
edge::${{ github.event.action == 'prereleased' || github.event.client_payload.tag_name == steps.latest-octoprint.outputs.release }}
canary::${{ github.event.action == 'canary' }}
bleeding::${{ github.event.action == 'bleeding' }}
-
run: echo "tags ${{ steps.tagging.outputs.tags }}"
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and Deploy
uses: docker/build-push-action@v2
with:
push: true
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max
tags: ${{ steps.tagging.outputs.tags }}
platforms: |
linux/amd64
linux/arm/v7
linux/arm64
build-args: |
octoprint_ref=${{ github.event.client_payload.tag_name }}
labels: ${{ needs.meta.outputs.labels }}
release_minimal_on_dispatch:
if: github.event_name == 'repository_dispatch' && github.repository_owner == 'OctoPrint'
needs: meta
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v2
-
name: Get latest Octoprint
id: latest-octoprint
uses: pozetroninc/github-action-get-latest-release@master
with:
owner: OctoPrint
repo: OctoPrint
excludes: draft
-
name: Get latest stable Octoprint
id: stable-octoprint
uses: pozetroninc/github-action-get-latest-release@master
with:
owner: OctoPrint
repo: OctoPrint
excludes: prerelease,draft
-
run: echo "latest stable release ${{ steps.stable-octoprint.outputs.release }}"
-
name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
with:
platforms: arm,arm64
-
name: Set up Buildx
uses: docker/setup-buildx-action@v1
-
name: Cache Docker Layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ hashfiles('**/Dockerfile') }}
restore-keys: |
${{ runner.os }}-buildx-
-
id: buildxy
run: echo '::set-output name=buildxy::${{ (github.event.action == 'deploy'|| github.event.action == 'released') && github.event.client_payload.tag_name == steps.stable-octoprint.outputs.release }}'
-
name: Tagging Strategy
id: tagging
uses: HackerHappyHour/tagging-strategy@v3
with:
image_name: octoprint/octoprint
tag_name: ${{ github.event.client_payload.tag_name }}
tags: |
%X%-minimal::${{ steps.buildxy.outputs.buildxy }}
%X.Y%-minimal::${{ steps.buildxy.outputs.buildxy }}
%X.Y.Z%-minimal
extra_tags: |
minimal::${{ steps.stable-octoprint.outputs.release == github.event.client_payload.tag_name }}
edge-minimal::${{ github.event.action == 'prereleased' || github.event.client_payload.tag_name == steps.latest-octoprint.outputs.release }}
canary-minimal::${{ github.event.action == 'canary' }}
bleeding-minimal::${{ github.event.action == 'bleeding' }}
-
run: echo "tags ${{ steps.tagging.outputs.tags }}"
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and Deploy
uses: docker/build-push-action@v2
with:
push: true
context: ./minimal
file: ./minimal/Dockerfile
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max
tags: ${{ steps.tagging.outputs.tags }}
platforms: |
linux/amd64
linux/arm/v7
linux/arm64
build-args: |
octoprint_ref=${{ github.event.client_payload.tag_name }}
labels: ${{ needs.meta.outputs.labels }}
push_filters:
runs-on: ubuntu-latest
if: github.event_name == 'push'
outputs:
main: ${{ steps.filter.outputs.main }}
minimal: ${{ steps.filter.outputs.minimal }}
steps:
-
uses: actions/checkout@v2
-
uses: dorny/paths-filter@v2.6.0
id: filter
with:
filters: '.github/filters.yml'
# This job should build and publish the main octoprint image from the latest,
# stable release of octoprint, and *should* overwrite the 'latest' tag
# ensures this will not run on the dispatch event, or when non-relevant files
# are changed (such as documentation or build/workflow scripts)
release_main_on_push:
if: needs.push_filters.outputs.main == 'true' && github.event_name == 'push' && github.repository_owner == 'OctoPrint'
needs: [meta, push_filters]
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v2
# outputs: release
-
name: Get Stable Octoprint
id: stable-octoprint
uses: pozetroninc/github-action-get-latest-release@master
with:
owner: OctoPrint
repo: OctoPrint
excludes: prerelease,draft
-
name: Get latest Octoprint
id: latest-octoprint
uses: pozetroninc/github-action-get-latest-release@master
with:
owner: OctoPrint
repo: OctoPrint
excludes: draft
-
name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
with:
platforms: arm,arm64
-
name: Set up Buildx
uses: docker/setup-buildx-action@v1
-
name: Cache Docker Layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ hashfiles('**/Dockerfile') }}
restore-keys: |
${{ runner.os }}-buildx-
-
name: Tagging Strategy
id: tagging
uses: HackerHappyHour/tagging-strategy@v3
with:
image_name: octoprint/octoprint
tag_name: ${{ steps.stable-octoprint.outputs.release }}
tags: |
%X%
%X.Y%
%X.Y.Z%
extra_tags: |
latest
edge::${{ steps.stable-octoprint.outputs.release == steps.latest-octoprint.outputs.release }}
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
-
name: Build and Deploy
id: build_deploy
uses: docker/build-push-action@v2
with:
push: true
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max
tags: ${{ steps.tagging.outputs.tags }}
platforms: |
linux/amd64
linux/arm/v7
linux/arm64
build-args: |
octoprint_ref=${{ steps.stable-octoprint.outputs.release }}
labels: ${{ needs.meta.outputs.labels }}
release_minimal_on_push:
if: needs.push_filters.outputs.minimal == 'true' && github.event_name == 'push' && github.repository_owner == 'OctoPrint'
needs: [meta, push_filters]
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v2
# outputs: release
-
name: Get Stable Octoprint
id: stable-octoprint
uses: pozetroninc/github-action-get-latest-release@master
with:
owner: OctoPrint
repo: OctoPrint
excludes: prerelease,draft
-
name: Get latest Octoprint
id: latest-octoprint
uses: pozetroninc/github-action-get-latest-release@master
with:
owner: OctoPrint
repo: OctoPrint
excludes: draft
-
name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
with:
platforms: arm,arm64
-
name: Set up Buildx
uses: docker/setup-buildx-action@v1
-
name: Cache Docker Layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ hashfiles('**/Dockerfile') }}
restore-keys: |
${{ runner.os }}-buildx-
-
name: Tagging Strategy
id: tagging
uses: HackerHappyHour/tagging-strategy@v3
with:
image_name: octoprint/octoprint
tag_name: ${{ steps.stable-octoprint.outputs.release }}
tags: |
%X%-minimal
%X.Y%-minimal
%X.Y.Z%-minimal
extra_tags: |
minimal
edge-minimal::${{ steps.stable-octoprint.outputs.release == steps.latest-octoprint.outputs.release }}
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
-
name: Build and Deploy
id: build_deploy
uses: docker/build-push-action@v2
with:
push: true
context: ./minimal
file: ./minimal/Dockerfile
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max
tags: ${{ steps.tagging.outputs.tags }}
platforms: |
linux/amd64
linux/arm/v7
linux/arm64
build-args: |
octoprint_ref=${{ steps.stable-octoprint.outputs.release }}
labels: ${{ needs.meta.outputs.labels }}