Skip to content

Commit

Permalink
feat: publish arm64 images
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosala committed Mar 6, 2024
1 parent fd1811e commit a691140
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Build images
env:
zsh_tags: |
Expand Down Expand Up @@ -61,7 +69,7 @@ jobs:
"$image/build.sh" ${{ secrets.DOCKERHUB_ORG }}
done
- name: Log in to Docker Hub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down

0 comments on commit a691140

Please sign in to comment.