Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/actions/develop/initial-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ runs:
- name: Checkout the code
uses: actions/checkout@v4

- name: Set up QEMU action
uses: docker/setup-qemu-action@v3

# This is a separate action that sets up buildx runner
- name: Set up Docker Buildx
id: buildx
Expand All @@ -47,7 +50,7 @@ runs:
builder: ${{ steps.buildx.outputs.name }}
file: Dockerfile
build-args: AWS_ECR_URL=${{ steps.login-ecr.outputs.registry }}
platforms: linux/amd64
platforms: linux/amd64,linux/arm64/v8
tags: ${{ steps.login-ecr.outputs.registry }}/${{ env.ECR_REPOSITORY }}:${{ env.IMAGE_TAG }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
Expand Down