Skip to content

Commit

Permalink
fix: docker buildx
Browse files Browse the repository at this point in the history
  • Loading branch information
Lf1tz committed Apr 10, 2024
1 parent 61159a0 commit a71af41
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,9 @@ jobs:
- name: Docker login
run: docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PW }}
- name: Build the Docker image
run: docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 . -t sirchango/argo-mm-generator:${GITHUB_REF#refs/tags/} --push
run: |
docker buildx install
docker buildx create --use
export DOCKER_BUILDKIT=1
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 . -t sirchango/argo-mm-generator:${GITHUB_REF#refs/tags/} --push

0 comments on commit a71af41

Please sign in to comment.