Skip to content

Publication vio images to Github registry on branch >> big-refactor << #16

Publication vio images to Github registry on branch >> big-refactor <<

Publication vio images to Github registry on branch >> big-refactor << #16

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 }}