fix: Post-Deployment Script for Managing Bicep Outputs in .env File and Update Conversation flow based on template selection #2955
Workflow file for this run
This file contains hidden or 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: Build Docker Images | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
- demo | |
pull_request: | |
branches: | |
- main | |
- dev | |
- demo | |
types: | |
- opened | |
- ready_for_review | |
- reopened | |
- synchronize | |
merge_group: | |
jobs: | |
docker-build: | |
strategy: | |
matrix: | |
include: | |
- app_name: rag-adminwebapp | |
dockerfile: docker/Admin.Dockerfile | |
- app_name: rag-backend | |
dockerfile: docker/Backend.Dockerfile | |
- app_name: rag-webapp | |
dockerfile: docker/Frontend.Dockerfile | |
uses: ./.github/workflows/build-docker.yml | |
with: | |
registry: ${{ github.ref_name == 'main' && 'fruoccopublic.azurecr.io' || 'cwydcontainerreg.azurecr.io'}} | |
username: ${{ github.ref_name == 'main' && 'fruoccopublic' || 'cwydcontainerreg'}} | |
app_name: ${{ matrix.app_name }} | |
dockerfile: ${{ matrix.dockerfile }} | |
push: ${{ github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo' }} | |
secrets: inherit |