Skip to content

(WIP build docker and push images on push) #1

(WIP build docker and push images on push)

(WIP build docker and push images on push) #1

Workflow file for this run

name: Build Docker Images
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
image: [api, frontend, data-sink-worker]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push Docker image
uses: ./.github/actions/build-docker-image
with:
image: ${{ matrix.image }}