Skip to content

Commit

Permalink
ci(actions): use full form env vars providing
Browse files Browse the repository at this point in the history
  • Loading branch information
WerySkok committed Nov 3, 2024
1 parent 4b827ef commit 79b3bf6
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ 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 }}/${{env.BASE_IMAGE_NAME}}:test
platforms: linux/amd64,linux/arm64
file: install/automated/docker/openvk.Dockerfile
build-args: |
Expand All @@ -44,8 +43,7 @@ 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 }}/${{env.DB_IMAGE_NAME}}:${{env.DB_VERSION}}-primary
platforms: linux/amd64,linux/arm64
file: install/automated/docker/mariadb-primary.Dockerfile
build-args: |
Expand All @@ -54,8 +52,7 @@ 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 }}/${{env.DB_IMAGE_NAME}}:${{env.DB_VERSION}}-eventdb
platforms: linux/amd64,linux/arm64
file: install/automated/docker/mariadb-eventdb.Dockerfile
build-args: |
Expand Down

0 comments on commit 79b3bf6

Please sign in to comment.