We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56404f4 commit 16e668fCopy full SHA for 16e668f
.github/workflows/build-docker.yaml
@@ -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