Skip to content

Commit 58de120

Browse files
committed
Don't build on 32-bit arm
1 parent ab0fd23 commit 58de120

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/docker.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
steps:
2222
- name: Check out the repo
2323
uses: actions/checkout@v4
24-
24+
2525
- name: Log in to Docker Hub
2626
uses: docker/login-action@v3
2727
with:
2828
username: ${{ secrets.DOCKER_USERNAME }}
2929
password: ${{ secrets.DOCKER_PASSWORD }}
30-
30+
3131
- name: Extract metadata (tags, labels) for Docker
3232
id: meta
3333
uses: docker/metadata-action@v5
@@ -39,13 +39,13 @@ jobs:
3939
4040
- name: Set up Docker Buildx
4141
uses: docker/setup-buildx-action@v3
42-
42+
4343
- name: Build and push Docker image
4444
uses: docker/build-push-action@v5
4545
with:
4646
context: .
47-
platforms: linux/amd64,linux/arm64,linux/arm
48-
file: ./Dockerfile.${{ matrix.os }}
47+
platforms: linux/amd64,linux/arm64
48+
file: ./Dockerfile.${{ matrix.os }}
4949
push: true
5050
tags: ${{ steps.meta.outputs.tags }}
5151
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)