Skip to content

Commit c96f5ad

Browse files
authored
Update buildx.yml
1 parent 9ff2d2f commit c96f5ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/buildx.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
docker buildx build --push \
5656
--tag benbusby/whoogle-search:update-testing \
5757
--tag ghcr.io/benbusby/whoogle-search:update-testing \
58-
--platform linux/amd64,linux/arm/v7,linux/arm64 .
58+
--platform linux/amd64,linux/arm64 .
5959
- name: build and push release (version + latest)
6060
if: github.event_name == 'release' && github.event.release.prerelease == false && (github.actor == 'benbusby' || github.actor == 'Don-Swanson')
6161
run: |
@@ -66,7 +66,7 @@ jobs:
6666
--tag benbusby/whoogle-search:latest \
6767
--tag ghcr.io/benbusby/whoogle-search:${VERSION} \
6868
--tag ghcr.io/benbusby/whoogle-search:latest \
69-
--platform linux/amd64,linux/arm/v7,linux/arm64 .
69+
--platform linux/amd64,linux/arm64 .
7070
- name: build and push pre-release (version only)
7171
if: github.event_name == 'release' && github.event.release.prerelease == true && (github.actor == 'benbusby' || github.actor == 'Don-Swanson')
7272
run: |
@@ -75,11 +75,11 @@ jobs:
7575
docker buildx build --push \
7676
--tag benbusby/whoogle-search:${VERSION} \
7777
--tag ghcr.io/benbusby/whoogle-search:${VERSION} \
78-
--platform linux/amd64,linux/arm/v7,linux/arm64 .
78+
--platform linux/amd64,linux/arm64 .
7979
- name: build and push tag
8080
if: startsWith(github.ref, 'refs/tags')
8181
run: |
8282
docker buildx build --push \
8383
--tag benbusby/whoogle-search:${GITHUB_REF#refs/*/v} \
8484
--tag ghcr.io/benbusby/whoogle-search:${GITHUB_REF#refs/*/v} \
85-
--platform linux/amd64,linux/arm/v7,linux/arm64 .
85+
--platform linux/amd64,linux/arm64 .

0 commit comments

Comments
 (0)