-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (39 loc) · 1.58 KB
/
publication_vio_images.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Publication vio images to Github registry
run-name: Publication vio images to Github registry on branch >> ${{ github.ref_name }} <<
on:
release:
types:
- created
workflow_dispatch:
jobs:
build_and_push_images:
strategy:
fail-fast: false
matrix:
include:
- dockerfile: ./edge_interface/Dockerfile
image: ghcr.io/${{ github.repository }}/edge_interface
context: ./edge_interface
- dockerfile: ./edge_streamlit/Dockerfile
image: ghcr.io/${{ github.repository }}/edge_streamlit
context: ./edge_streamlit
- dockerfile: ./edge_orchestrator/Dockerfile
image: ghcr.io/${{ github.repository }}/edge_orchestrator
context: ./edge_orchestrator
- dockerfile: ./edge_model_serving/tf_serving/Dockerfile
image: ghcr.io/${{ github.repository }}/edge_tf_serving
context: ./edge_model_serving
- dockerfile: ./edge_model_serving/tflite_serving/Dockerfile
image: ghcr.io/${{ github.repository }}/edge_tflite_serving
context: ./edge_model_serving
- dockerfile: ./edge_model_serving/torch_serving/Dockerfile
image: ghcr.io/${{ github.repository }}/edge_torch_serving
context: ./edge_model_serving
uses: ./.github/workflows/template_build_and_push_docker_images.yml
with:
context: ${{ matrix.context }}
dockerfile: ${{ matrix.dockerfile }}
image: ${{ matrix.image }}
secrets:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}