Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Publish images from Feature Branches #4

Publish images from Feature Branches

Publish images from Feature Branches #4

name: Publish images from Feature Branches
on:
workflow_dispatch:
jobs:
setup_env:
uses: ./.github/workflows/setup-environment.yml
build_from_branch:
needs: setup_env
uses: ./.github/workflows/image-build.yml
secrets: inherit
with:
component_version: ${{ needs.setup_env.outputs.component_version }}
publish_from_branch:
uses: ./.github/workflows/image-publish.yml
needs: build_from_branch
secrets: inherit
with:
gar_push_enabled: true
gar_image_name: us-docker.pkg.dev/vorvan/mlops-dev/h2oai-modelscoring-restscorer
ecr_push_enabled: false
image_tags: "${{ needs.setup_env.outputs.sanitized_branch_name }}"