Skip to content

Commit

Permalink
Fixes #224
Browse files Browse the repository at this point in the history
  • Loading branch information
haxorof committed May 23, 2024
1 parent 2b7b071 commit 5251e39
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,13 @@ jobs:
with:
args: Dockerfile.${{ matrix.os }}

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

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.3.0

- name: Build and Push
- name: Build (test build linux/amd64)
uses: docker/build-push-action@v5.3.0
with:
load: true
Expand All @@ -79,7 +82,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and Push
- name: Build and Push (linux/amd64,linux/arm64)
uses: docker/build-push-action@v5.3.0
with:
labels: |
Expand All @@ -91,6 +94,7 @@ jobs:
tags: ${{ steps.prep.outputs.tags }}
context: .
file: ./Dockerfile.${{ matrix.os }}
platforms: linux/amd64,linux/arm64
push: ${{ endsWith(github.ref, '/master') }}

dependabot:
Expand Down

0 comments on commit 5251e39

Please sign in to comment.