custom builder just building amd64 for now pending multi-arch ffmpeg releases being available, part of #81

This commit is contained in:
meeb 2021-05-27 20:01:29 +10:00
parent a986864f77
commit afda481046
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ jobs:
- name: Create a new container builder
run: docker buildx create --name builder && docker buildx use builder
- name: Build the container image
run: docker buildx build --platform linux/arm/v7,linux/arm64,linux/amd64 --tag $IMAGE_NAME .
run: docker buildx build --platform linux/amd64 --tag $IMAGE_NAME .
- name: Log into GitHub Container Registry
run: echo "${{ secrets.REGISTRY_ACCESS_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push image to GitHub Container Registry

View File

@ -18,7 +18,7 @@ jobs:
- name: Create a new container builder
run: docker buildx create --name builder && docker buildx use builder
- name: Build the container image
run: docker buildx build --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --tag $IMAGE_NAME .
run: docker buildx build --platform linux/amd64 --tag $IMAGE_NAME .
- name: Log into GitHub Container Registry
run: echo "${{ secrets.REGISTRY_ACCESS_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push image to GitHub Container Registry