Skip to content

Commit 38db9b5

Browse files
committed
Remove unused platforms
1 parent c38452f commit 38db9b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ jobs:
3636
run: |
3737
docker buildx build \
3838
--push \
39-
--platform=linux/amd64,linux/arm64,linux/armhf \
39+
--platform=linux/amd64,linux/arm64 \
4040
-t ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest -f ./Dockerfile ./
4141
- name: Also create tagged image if tag exists
4242
if: startsWith(github.ref, 'refs/tags/')
4343
run: |
4444
TAG=${GITHUB_REF#refs/tags/}
4545
docker buildx build \
4646
--push \
47-
--platform=linux/amd64,linux/arm64,linux/armhf \
47+
--platform=linux/amd64,linux/arm64 \
4848
-t ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:$TAG -f ./Dockerfile ./

0 commit comments

Comments
 (0)