From f1c6fc3086ad98f7ed4cb087d54b3af59d7035b6 Mon Sep 17 00:00:00 2001 From: SweetMNM <44876816+SweetMNM@users.noreply.github.com> Date: Wed, 8 Jun 2022 08:20:08 +0300 Subject: [PATCH] :circus_tent: Update CI action to support arm64 --- .github/workflows/ci.yaml | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 35127ec..536c080 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,19 +35,24 @@ jobs: containerise: runs-on: ubuntu-latest steps: - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - name: Log into GitHub Container Registry - run: echo "${{ secrets.REGISTRY_ACCESS_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin - - name: Build and push - uses: docker/build-push-action@v2 - with: - platforms: linux/amd64 - push: true - tags: ghcr.io/meeb/${{ env.IMAGE_NAME }}:latest - cache-from: type=registry,ref=ghcr.io/meeb/${{ env.IMAGE_NAME }}:latest - cache-to: type=inline - build-args: | - IMAGE_NAME=${{ env.IMAGE_NAME }} + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - name: Log into GitHub Container Registry + run: echo "${{ secrets.REGISTRY_ACCESS_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin + - name: Lowercase github username for ghcr + id: string + uses: ASzc/change-string-case-action@v1 + with: + string: ${{ github.actor }} + - name: Build and push + uses: docker/build-push-action@v2 + with: + platforms: linux/amd64,linux/arm64 + push: true + tags: ghcr.io/${{ steps.string.outputs.lowercase }}/${{ env.IMAGE_NAME }}:latest + cache-from: type=registry,ref=ghcr.io/${{ steps.string.outputs.lowercase }}/${{ env.IMAGE_NAME }}:latest + cache-to: type=inline + build-args: | + IMAGE_NAME=${{ env.IMAGE_NAME }}