mirror of
https://github.com/gabehf/sonarr-seadex-proxy.git
synced 2026-03-09 15:38:21 -07:00
fix arm64 images being incorrecly annotated as amd64
This commit is contained in:
parent
4ccec8ce22
commit
fabb36bea8
2 changed files with 3 additions and 3 deletions
4
.github/workflows/build-container-ghcr.yml
vendored
4
.github/workflows/build-container-ghcr.yml
vendored
|
|
@ -22,10 +22,10 @@ jobs:
|
|||
# Build per-arch images
|
||||
- name: Build amd64 image
|
||||
run: |
|
||||
docker build -t ${IMAGE_NAME}:${VERSION}-amd64 -f Dockerfile --build-arg ARCH=amd64 .
|
||||
docker build --platform linux/amd64 -t ${IMAGE_NAME}:${VERSION}-amd64 -f Dockerfile --build-arg ARCH=amd64 .
|
||||
- name: Build arm64 image
|
||||
run: |
|
||||
docker build -t ${IMAGE_NAME}:${VERSION}-arm64 -f Dockerfile --build-arg ARCH=arm64 .
|
||||
docker build --platform linux/arm64 -t ${IMAGE_NAME}:${VERSION}-arm64 -f Dockerfile --build-arg ARCH=arm64 .
|
||||
- name: Push per-arch images
|
||||
run: |
|
||||
docker push ${IMAGE_NAME}:${VERSION}-amd64
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue