Skip to content

Commit d7916fa

Browse files
committed
fix: update Docker build platforms to support arm64 architecture
1 parent 4da3074 commit d7916fa

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/github-docker-registry-push.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
uses: docker/build-push-action@v6
132132
with:
133133
context: ./dockerfiles
134-
platforms: linux/amd64, linux/aarch64
134+
platforms: linux/amd64, linux/arm64
135135
push: true
136136
tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:simple_controller_${{ env.BRANCH }}
137137

@@ -141,7 +141,7 @@ jobs:
141141
uses: docker/build-push-action@v6
142142
with:
143143
context: ./dockerfiles/maven
144-
platforms: linux/amd64, linux/aarch64
144+
platforms: linux/amd64, linux/arm64
145145
push: true
146146
tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:maven_agent_${{ env.BRANCH }}
147147

@@ -151,7 +151,7 @@ jobs:
151151
uses: docker/build-push-action@v6
152152
with:
153153
context: ./dockerfiles/python
154-
platforms: linux/amd64, linux/aarch64
154+
platforms: linux/amd64, linux/arm64
155155
push: true
156156
tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:python_agent_${{ env.BRANCH }}
157157

@@ -161,7 +161,7 @@ jobs:
161161
uses: docker/build-push-action@v6
162162
with:
163163
context: ./dockerfiles/node
164-
platforms: linux/amd64, linux/aarch64
164+
platforms: linux/amd64, linux/arm64
165165
push: true
166166
tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:node_agent_${{ env.BRANCH }}
167167

@@ -171,7 +171,7 @@ jobs:
171171
uses: docker/build-push-action@v6
172172
with:
173173
context: ./dockerfiles/sidekick
174-
platforms: linux/amd64, linux/aarch64
174+
platforms: linux/amd64, linux/arm64
175175
push: true
176176
tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:sidekick_${{ env.BRANCH }}
177177

@@ -181,7 +181,7 @@ jobs:
181181
uses: docker/build-push-action@v6
182182
with:
183183
context: ./dockerfiles/agent-discovery/
184-
platforms: linux/amd64, linux/aarch64
184+
platforms: linux/amd64, linux/arm64
185185
push: true
186186
tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:agent_discovery_${{ env.BRANCH }}
187187

@@ -191,7 +191,7 @@ jobs:
191191
uses: docker/build-push-action@v6
192192
with:
193193
context: ./dockerfiles/multi
194-
platforms: linux/amd64, linux/aarch64
194+
platforms: linux/amd64, linux/arm64
195195
push: true
196196
tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:multi_controller_${{ env.BRANCH }}
197197

@@ -221,7 +221,7 @@ jobs:
221221
uses: docker/build-push-action@v6
222222
with:
223223
context: ./dockerfiles/cpp
224-
platforms: linux/amd64, linux/aarch64
224+
platforms: linux/amd64, linux/arm64
225225
push: true
226226
tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:cpp_${{ env.BRANCH }}
227227

@@ -231,6 +231,6 @@ jobs:
231231
uses: docker/build-push-action@v6
232232
with:
233233
context: ./dockerfiles/dotnet
234-
platforms: linux/amd64, linux/aarch64
234+
platforms: linux/amd64, linux/arm64
235235
push: true
236236
tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:dotnet_${{ env.BRANCH }}

0 commit comments

Comments
 (0)