mirror of
https://github.com/openvk/openvk
synced 2024-11-15 11:39:13 +03:00
59 lines
1.9 KiB
YAML
59 lines
1.9 KiB
YAML
name: Build images
|
|
|
|
on:
|
|
push:
|
|
|
|
env:
|
|
BASE_IMAGE_NAME: openvk
|
|
DB_IMAGE_NAME: mariadb
|
|
EVENT_IMAGE_NAME: mariadb
|
|
DB_VERSION: "10.9"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.event_name == 'push'
|
|
steps:
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Change repository string to lowercase
|
|
id: repositorystring
|
|
uses: Entepotenz/change-string-case-action-min-dependencies@v1.1.0
|
|
with:
|
|
string: ${{ github.repository }}
|
|
|
|
# - name: Log into registry
|
|
# run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
|
|
|
|
- name: Build base image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
tags: ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/$BASE_IMAGE_NAME:test
|
|
platforms: linux/amd64,linux/arm64
|
|
file: install/automated/docker/openvk.Dockerfile
|
|
build-args: |
|
|
GITREPO=${{ steps.repositorystring.outputs.lowercase }}
|
|
|
|
- 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
|
|
platforms: linux/amd64,linux/arm64
|
|
file: install/automated/docker/mariadb-primary.Dockerfile
|
|
build-args: |
|
|
VERSION=$DB_VERSION
|
|
|
|
- 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
|
|
platforms: linux/amd64,linux/arm64
|
|
file: install/automated/docker/mariadb-eventdb.Dockerfile
|
|
build-args: |
|
|
VERSION=$DB_VERSION
|