Skip to content

Commit

Permalink
Merge pull request #12 from gizmoguy/setup-buildx-action
Browse files Browse the repository at this point in the history
Migrate to docker/setup-buildx-action.
  • Loading branch information
gizmoguy authored Nov 30, 2021
2 parents 8ec4264 + 057cd1c commit 9e2d0d0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up qemu
uses: docker/setup-qemu-action@v1
with:
platforms: all
- name: Set up docker buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v3
uses: docker/setup-buildx-action@v1
with:
buildx-version: latest
qemu-version: latest
version: latest
- name: Login to docker registry
run: |
docker login --username ${{ secrets.DOCKER_USERNAME }} --password ${{ secrets.DOCKER_TOKEN }}
Expand Down

0 comments on commit 9e2d0d0

Please sign in to comment.