Skip to content

Commit 3cd8c92

Browse files
committed
update build
1 parent d59dfca commit 3cd8c92

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build-push-ecr.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ jobs:
4141
with:
4242
registry: ${{ env.ECR }}
4343

44+
- name: Set up QEMU
45+
uses: docker/setup-qemu-action@v2
46+
4447
- name: Set up Docker Buildx
4548
uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c
4649

@@ -53,7 +56,7 @@ jobs:
5356
tags: |
5457
${{ env.ECR }}/${{ env.IMAGE_NAME_SERVER }}:${{ env.LATEST_TAG }}
5558
${{ env.ECR }}/${{ env.IMAGE_NAME_SERVER }}:${{ env.COMMIT_TAG }}
56-
platforms: linux/amd64
59+
platforms: linux/amd64,linux/arm64
5760
build-args: |
5861
TAG=${{ github.ref_name }}
5962
SHA=${{ github.sha }}
@@ -77,6 +80,9 @@ jobs:
7780
with:
7881
registry: ${{ env.ECR }}
7982

83+
- name: Set up QEMU
84+
uses: docker/setup-qemu-action@v2
85+
8086
- name: Set up Docker Buildx
8187
uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c
8288

@@ -89,7 +95,7 @@ jobs:
8995
tags: |
9096
${{ env.ECR }}/${{ env.IMAGE_NAME_CONFIG_UI }}:${{ env.LATEST_TAG }}
9197
${{ env.ECR }}/${{ env.IMAGE_NAME_CONFIG_UI }}:${{ env.COMMIT_TAG }}
92-
platforms: linux/amd64
98+
platforms: linux/amd64,linux/arm64
9399
build-args: |
94100
TAG=${{ github.ref_name }}
95101
SHA=${{ github.sha }}

0 commit comments

Comments
 (0)