Skip to content

Commit

Permalink
Merge pull request #10 from lsdopen/feature-multi-arch-images
Browse files Browse the repository at this point in the history
Feature multi arch images
  • Loading branch information
rainerschamm authored Dec 5, 2024
2 parents b197da4 + a17d6fb commit 3397731
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,24 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
# -
# name: Set up QEMU
# uses: docker/setup-qemu-action@v3
-
name: Set up Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
tags: lsdopen/swiss-army-knife:latest
-
Expand Down

0 comments on commit 3397731

Please sign in to comment.