Skip to content

Commit 16e668f

Browse files
author
Mikhail Savelyev
committed
(WIP build docker and push images on push)
1 parent 56404f4 commit 16e668f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build Docker Images
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
image: [api, frontend, data-sink-worker]
13+
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v3
17+
18+
- name: Set up Docker Buildx
19+
uses: docker/setup-buildx-action@v2
20+
21+
- name: Build and push Docker image
22+
uses: ./.github/actions/build-docker-image
23+
with:
24+
image: ${{ matrix.image }}

0 commit comments

Comments
 (0)