-
Notifications
You must be signed in to change notification settings - Fork 57
92 lines (77 loc) · 2.04 KB
/
build-bake.yaml
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
on:
push:
branches:
- main
- dev
pull_request:
name: Release - Build, Test, and Push
jobs:
build:
name: Build and Test images
runs-on: ubuntu-latest-4x
concurrency:
group: bake-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Just
uses: extractions/setup-just@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and test
id: build
uses: docker/bake-action@v4
with:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,compression=zstd
targets: "build-test"
push: false
- name: Test Connect (privileged container)
run: |
just -f build.justfile test-connect
- name: Push
id: push
if: github.ref == 'refs/heads/main'
uses: docker/bake-action@v4
with:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,compression=zstd
targets: "build"
push: true
build-content:
runs-on: ubuntu-latest-4x
concurrency:
group: bake-content-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
id: build
uses: docker/bake-action@v4
with:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,compression=zstd
workdir: content/.
push: false
- name: Push
id: push
if: github.ref == 'refs/heads/main'
uses: docker/bake-action@v4
with:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,compression=zstd
workdir: content/.
push: true