Skip to content

Commit 1838622

Browse files
authored
feat: add support for aarch64 images (#8)
1 parent 96541f6 commit 1838622

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/upgrade-aws.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ jobs:
5959
- name: Login to Amazon ECR
6060
id: login-ecr
6161
uses: aws-actions/amazon-ecr-login@v1
62-
- name: Build
63-
run: docker build -t 983851922138.dkr.ecr.eu-central-1.amazonaws.com/tippecanoe:latest .
64-
- name: Push
65-
run: docker push 983851922138.dkr.ecr.eu-central-1.amazonaws.com/tippecanoe
62+
- name: "Build & Push (amd64, arm64)"
63+
run: |
64+
docker buildx build \
65+
--platform linux/amd64,linux/arm64 \
66+
-t 983851922138.dkr.ecr.eu-central-1.amazonaws.com/tippecanoe:latest \
67+
--push .

0 commit comments

Comments
 (0)