-
Notifications
You must be signed in to change notification settings - Fork 9
207 lines (174 loc) · 7.35 KB
/
build-docker-images.yaml
File metadata and controls
207 lines (174 loc) · 7.35 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
name: Build Docker images
on:
push:
workflow_dispatch:
schedule:
- cron: '30 1 * * *'
env:
DOCKER_REPOSITORY: ghcr.io/friendsofshopware/platform-plugin-dev
CACHE_KEY: "2020-09-22"
jobs:
build-base:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3']
flavour: ['alpine', 'bullseye']
steps:
- name: Clone
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build docker image
uses: docker/build-push-action@v3
with:
build-args: |
PHP_VERSION=${{ matrix.php-version }}
FLAVOUR=${{ matrix.flavour }}
tags: "${{ env.DOCKER_REPOSITORY }}-base:${{ matrix.php-version }}-${{ matrix.flavour }}"
file: "${{ matrix.flavour }}/Dockerfile.base"
push: false
load: true
cache-from: type=gha,scope=${{ github.ref_name }}-${{ env.CACHE_KEY }}-${{ matrix.php-version }}-${{ matrix.flavour }}
cache-to: type=gha,mode=max,scope=${{ github.ref_name }}-${{ env.CACHE_KEY }}-${{ matrix.php-version }}-${{ matrix.flavour }}
labels: |
org.opencontainers.image.title=${{ github.event.repository.name }}
org.opencontainers.image.description=${{ github.event.repository.description }}
org.opencontainers.image.url=${{ github.event.repository.html_url }}
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.version=${{ steps.prep.outputs.version }}
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.licenses=${{ github.event.repository.license.spdx_id }}
- name: Check for push
id: check-push
run: |
if [ "${{ secrets.DOCKER_USERNAME }}" == "" ] || [ "${{ secrets.DOCKER_PASSWORD }}" == "" ]; then
echo "No Docker credentials found, skipping push."
exit 0
fi
if [ "${{ github.event_name == 'pull_request' }}" == "true" ]; then
echo "Pull request, skipping push."
exit 0
fi
if [ "${{ github.ref }}" != "refs/heads/main" ]; then
echo "Not on main branch, skipping push."
exit 0
fi
echo "push=1" >> $GITHUB_OUTPUT
- name: Login to GitHub Docker Registry
uses: docker/login-action@v2
if: ${{ steps.check-push.outputs.push }}
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push docker image
if: ${{ steps.check-push.outputs.push }}
run: |
docker push "${{ env.DOCKER_REPOSITORY }}-base:${{ matrix.php-version }}-${{ matrix.flavour }}"
generate-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.generate-matrix.outputs.matrix }}
steps:
- name: Clone
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Generate matrix
id: generate-matrix
run: |
matrix=$(node bin/generate-matrix.js)
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
build:
needs:
- build-base
- generate-matrix
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
steps:
- name: Clone
uses: actions/checkout@v3
- name: Get Tag
id: get-docker-tag
run: |
if [[ "${{ matrix.shopware-version }}" =~ ^v.* ]]; then
shopware_version_tag=$(echo "${{ matrix.shopware-version }}" | grep -m1 -E '(v[0-9]+\.[0-9]+\.[0-9]+)' -o)
else
shopware_version_tag="${{ matrix.shopware-version }}"
fi
[ "${shopware_version_tag}" == "" ] && exit 1
tag="${{ env.DOCKER_REPOSITORY }}:${shopware_version_tag}-${{ matrix.php-version }}-${{ matrix.flavour }}"
if [[ "${{ matrix.flavour }}" == "alpine" ]]; then
tag="$tag, ${{ env.DOCKER_REPOSITORY }}:${shopware_version_tag}-${{ matrix.php-version }}"
if [[ "${{ matrix.is-main }}" == "true" ]]; then
tag="$tag, ${{ env.DOCKER_REPOSITORY }}:${shopware_version_tag}"
fi
elif [[ "${{ matrix.is-main }}" == "true" ]]; then
tag="$tag, ${{ env.DOCKER_REPOSITORY }}:${shopware_version_tag}-${{ matrix.flavour }}"
fi
fi
echo "Shopware version ${{ matrix.shopware-version }}"
echo "PHP version ${{ matrix.php-version }}"
echo "Image Tag: ${tag}"
echo "tag=${tag}" >> $GITHUB_OUTPUT
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build docker image
uses: docker/build-push-action@v3
with:
build-args: |
SHOPWARE_VERSION=${{ matrix.shopware-version }}
PHP_VERSION=${{ matrix.php-version }}
TEMPLATE_REPOSITORY=${{ matrix.template }}
FLAVOUR=${{ matrix.flavour }}
tags: ${{ steps.get-docker-tag.outputs.tag }}
file: "${{ matrix.flavour }}/Dockerfile"
push: false
load: true
cache-from: type=gha,scope=${{ github.ref_name }}-${{ env.CACHE_KEY }}-${{ matrix.shopware-version }}-${{ matrix.flavour }}
cache-to: type=gha,mode=max,scope=${{ github.ref_name }}-${{ env.CACHE_KEY }}-${{ matrix.shopware-version }}-${{ matrix.flavour }}
labels: |
org.opencontainers.image.title=${{ github.event.repository.name }}
org.opencontainers.image.description=${{ github.event.repository.description }}
org.opencontainers.image.url=${{ github.event.repository.html_url }}
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.version=${{ steps.prep.outputs.version }}
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.licenses=${{ github.event.repository.license.spdx_id }}
- name: Check for push
id: check-push
run: |
if [ "${{ secrets.DOCKER_USERNAME }}" == "" ] || [ "${{ secrets.DOCKER_PASSWORD }}" == "" ]; then
echo "No Docker credentials found, skipping push."
exit 0
fi
if [ "${{ github.event_name == 'pull_request' }}" == "true" ]; then
echo "Pull request, skipping push."
exit 0
fi
if [ "${{ github.ref }}" != "refs/heads/main" ]; then
echo "Not on main branch, skipping push."
exit 0
fi
echo "push=1" >> $GITHUB_OUTPUT
- name: Login to GitHub Docker Registry
uses: docker/login-action@v2
if: ${{ steps.check-push.outputs.push }}
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push docker image
if: ${{ steps.check-push.outputs.push }}
run: |
tags="${{ steps.get-docker-tag.outputs.tag }}"
for tag in ${tags//,/}; do
docker push "${tag}"
done