-
-
Notifications
You must be signed in to change notification settings - Fork 28
145 lines (140 loc) · 4.66 KB
/
docker-build-multiarch.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
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
# This workflow will build all of Gefyra's container images multi-arch
name: Build Container Images
# Controls when the workflow will run
on:
workflow_dispatch: {}
push:
branches: [ main ]
tags:
- "*"
permissions:
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to quay.io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_ROBOT }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
#
# Gefyra Operator
#
- name: Operator Image meta
id: operator_meta
uses: docker/metadata-action@v5
with:
flavor: |
latest=false
images: |
quay.io/gefyra/operator
tags: |
type=raw,value=latest,enable=${{ !startsWith(github.ref, 'refs/tags/') }}
type=raw,value={{tag}},enable=${{ startsWith(github.ref, 'refs/tags/') }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: operator/
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.operator_meta.outputs.tags }}
cache-from: type=registry,ref=${{ steps.operator_meta.outputs.tags }}
cache-to: type=inline
#
# Gefyra Cargo
#
- name: Cargo Image meta
uses: docker/metadata-action@v5
id: cargo_meta
with:
flavor: |
latest=false
images: |
quay.io/gefyra/cargo
tags: |
type=raw,value=latest,enable=${{ !startsWith(github.ref, 'refs/tags/') }}
type=raw,value={{tag}},enable=${{ startsWith(github.ref, 'refs/tags/') }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: cargo/
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
target: cargo
tags: ${{ steps.cargo_meta.outputs.tags }}
- name: Cargo Windows Image meta
uses: docker/metadata-action@v5
id: cargo_win_meta
with:
flavor: |
latest=false
images: |
quay.io/gefyra/cargo-win
tags: |
type=raw,value=latest,enable=${{ !startsWith(github.ref, 'refs/tags/') }}
type=raw,value={{tag}},enable=${{ startsWith(github.ref, 'refs/tags/') }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: cargo/
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
target: cargo-win
tags: ${{ steps.cargo_win_meta.outputs.tags }}
#
# Gefyra Carrier
#
- name: Carrier Image meta
uses: docker/metadata-action@v5
id: carrier_meta
with:
flavor: |
latest=false
images: |
quay.io/gefyra/carrier
tags: |
type=raw,value=latest,enable=${{ !startsWith(github.ref, 'refs/tags/') }}
type=raw,value={{tag}},enable=${{ startsWith(github.ref, 'refs/tags/') }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: carrier/
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.carrier_meta.outputs.tags }}
cache-from: type=registry,ref=${{ steps.carrier_meta.outputs.tags }}
cache-to: type=inline
#
# Gefyra Stowaway
#
- name: Stowaway Image meta
uses: docker/metadata-action@v5
id: stowaway_meta
with:
flavor: |
latest=false
images: |
quay.io/gefyra/stowaway
tags: |
type=raw,value=latest,enable=${{ !startsWith(github.ref, 'refs/tags/') }}
type=raw,value={{tag}},enable=${{ startsWith(github.ref, 'refs/tags/') }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: stowaway/
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.stowaway_meta.outputs.tags }}
cache-from: type=registry,ref=${{ steps.stowaway_meta.outputs.tags }}
cache-to: type=inline