From 4b827efee34b364bbec60463160dd3a78def5021 Mon Sep 17 00:00:00 2001 From: Alexander Minkin Date: Mon, 4 Nov 2024 00:14:43 +0300 Subject: [PATCH] ci(actions): try using multilines to provide env vars --- .github/workflows/build.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index de237f0c0..45d4d9386 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -34,7 +34,8 @@ jobs: - name: Build base image uses: docker/build-push-action@v6 with: - tags: ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/$BASE_IMAGE_NAME:test + tags: | + ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/$BASE_IMAGE_NAME:test platforms: linux/amd64,linux/arm64 file: install/automated/docker/openvk.Dockerfile build-args: | @@ -43,7 +44,8 @@ jobs: - name: Build MariaDB primary image uses: docker/build-push-action@v6 with: - tags: ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/$DB_IMAGE_NAME:$DB_VERSION-primary + tags: | + ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/$DB_IMAGE_NAME:$DB_VERSION-primary platforms: linux/amd64,linux/arm64 file: install/automated/docker/mariadb-primary.Dockerfile build-args: | @@ -52,7 +54,8 @@ jobs: - name: Build MariaDB event image uses: docker/build-push-action@v6 with: - tags: ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/$DB_IMAGE_NAME:$DB_VERSION-eventdb + tags: | + ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/$DB_IMAGE_NAME:$DB_VERSION-eventdb platforms: linux/amd64,linux/arm64 file: install/automated/docker/mariadb-eventdb.Dockerfile build-args: |