From 08c68a69e357f68521be2d9353b0c78f53615935 Mon Sep 17 00:00:00 2001 From: Alexander Minkin Date: Fri, 15 Nov 2024 17:47:17 +0300 Subject: [PATCH] ci(actions): try setting platforms for buildx --- .github/workflows/build.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 459f8bce..6fec5e07 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,6 +24,8 @@ jobs: - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v3 + with: + platforms: linux/${{matrix.platform}} - name: Change repository string to lowercase id: repositorystring @@ -77,6 +79,8 @@ jobs: - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v3 + with: + platforms: linux/${{matrix.platform}} - name: Change repository string to lowercase id: repositorystring @@ -130,7 +134,6 @@ jobs: file: install/automated/docker/mariadb-primary.Dockerfile tags: ${{ steps.db-primarymeta.outputs.tags }} labels: ${{ steps.db-primarymeta.outputs.labels }} - provenance: false # workaround, see https://github.com/orgs/community/discussions/45969 build-args: | VERSION=${{env.DB_VERSION}} @@ -142,6 +145,5 @@ jobs: file: install/automated/docker/mariadb-eventdb.Dockerfile tags: ${{ steps.db-eventmeta.outputs.tags }} labels: ${{ steps.db-eventmeta.outputs.labels }} - provenance: false # workaround, see https://github.com/orgs/community/discussions/45969 build-args: | VERSION=${{env.DB_VERSION}} \ No newline at end of file