diff --git a/.github/workflows/ci-image.yml b/.github/workflows/ci-image.yml index 461c119..7869461 100644 --- a/.github/workflows/ci-image.yml +++ b/.github/workflows/ci-image.yml @@ -10,7 +10,7 @@ on: - "*" jobs: - docker: + docker-amd64: runs-on: ubuntu-latest steps: - @@ -39,3 +39,32 @@ jobs: push: false build-args: | VERSION=latest + docker-arm64: + runs-on: ubuntu-latest-8core + steps: + - + name: Checkout + uses: actions/checkout@v3 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - + name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + - + name: Build + uses: docker/build-push-action@v3 + with: + context: . + platforms: linux/arm64 + push: false + build-args: | + VERSION=latest