Skip to content

Commit 54cd973

Browse files
committed
fix(translations): Only build amd64 images for now
Signed-off-by: Joas Schilling <[email protected]>
1 parent c3f038b commit 54cd973

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: Build container image
6969
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
7070
with:
71-
platforms: ${{ startsWith(github.event.inputs.folderPath, 'client') && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
71+
platforms: ${{ (startsWith(github.event.inputs.folderPath, 'client') || startsWith(github.event.inputs.folderPath, 'translations')) && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
7272
push: true
7373
context: ${{ github.event.inputs.folderPath }}
7474
file: '${{ github.event.inputs.folderPath }}/${{ github.event.inputs.dockerFile }}'

0 commit comments

Comments
 (0)