mirror of
https://github.com/openvk/openvk
synced 2024-11-15 03:31:18 +03:00
ci(actions): try using multilines to provide env vars
This commit is contained in:
parent
62d284c46c
commit
4b827efee3
1 changed files with 6 additions and 3 deletions
9
.github/workflows/build.yaml
vendored
9
.github/workflows/build.yaml
vendored
|
@ -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: |
|
||||
|
|
Loading…
Reference in a new issue