From 2bf3d1e220504908610177c72cdc167e3655a53a Mon Sep 17 00:00:00 2001 From: Attilio Greco Date: Wed, 18 Jan 2023 11:10:44 +0100 Subject: [PATCH] Update platforms upload --- .github/workflows/build-image.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index 29f2875..89b0cac 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Login to ghcr uses: docker/login-action@v2 @@ -44,7 +44,7 @@ jobs: with: string: ${{ github.repository_owner }} - - name: Build and push + - name: Build and push base uses: docker/build-push-action@v3 with: build-args: | @@ -52,6 +52,7 @@ jobs: ALPINE_VERSION=${{ matrix.alpine }} context: . file: ./Docker/Dockerfile.base + platforms: linux/amd64,linux/arm64 push: true tags: ghcr.io/${{ steps.string.outputs.lowercase }}/web-base/python:${{ matrix.python }}-alpine${{ matrix.alpine }}