Publication vio images to Github registry on branch >> 0.2.0 << #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |