Skip to content

Commit

Permalink
build wave for arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
toelke committed May 2, 2024
1 parent 563259f commit 674314f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,18 @@ jobs:
echo -n ::set-output name=VERSION::
VERSION=$(git describe --always --dirty --tags 2>/dev/null || echo "undefined")
( echo "$VERSION" )
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and publish image to Quay
uses: docker/build-push-action@v1
uses: docker/build-push-action@v5
with:
build_args: |
VERSION=${{ steps.version.outputs.VERSION }}
registry: ${{ secrets.REGISTRY_URI }}
repository: ${{ secrets.REGISTRY_REPOSITORY}}/${{ env.image_name }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
tags: "${{ steps.image_tags.outputs.IMAGE_TAGS }}"
tags: "${{ steps.image_tags.outputs.IMAGE_TAGS }}"
platforms: linux/amd64,linux/arm64

0 comments on commit 674314f

Please sign in to comment.