Skip to content

Commit

Permalink
🧵 Temp updates to arm/v7 to get docker publish working
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Mar 3, 2024
1 parent 5a029af commit 453f15c
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,15 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: all

# # Use Moby BuildKit
# - name: Set up Docker Buildx
# id: buildx
# uses: docker/setup-buildx-action@v1
# with:
# install: true
# version: latest
# driver-opts: image=moby/buildkit:master
platforms: linux/amd64, linux/arm64, linux/386, linux/ppc64le, linux/s390x

# Login into GH container registry
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

# Build the image from default Dockerfile
- name: Build image
run: docker build . --file docker/Dockerfile-multi-arch --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
run: DOCKER_BUILDKIT=0 docker build . --file docker/Dockerfile-multi-arch --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"

# Push build image
- name: Push image
Expand Down

0 comments on commit 453f15c

Please sign in to comment.