Skip to content

Commit

Permalink
Drop arm support
Browse files Browse the repository at this point in the history
  • Loading branch information
AFCMS committed Mar 11, 2024
1 parent 4ce4eb1 commit a4cc344
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ jobs:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3.0.0

- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3.0.0

Expand All @@ -60,11 +57,12 @@ jobs:
# Build and push Docker image
# https://github.com/docker/build-push-action
# No arm support for now. Require cross-compilation support in Dockerfile to not use QEMU.
- name: Build and push Docker image
uses: docker/build-push-action@v5.1.0
with:
context: .
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down

0 comments on commit a4cc344

Please sign in to comment.