fix: Bug 5291 | Added changes related to ROI and asset value issue solved #30
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 ClientAdvisor Docker Images | |
| on: | |
| push: | |
| branches: [main, dev, demo] | |
| paths: | |
| - ClientAdvisor/** | |
| pull_request: | |
| branches: [main, dev, demo] | |
| types: | |
| - opened | |
| - ready_for_review | |
| - reopened | |
| - synchronize | |
| paths: | |
| - ClientAdvisor/** | |
| merge_group: | |
| jobs: | |
| docker-build: | |
| strategy: | |
| matrix: | |
| include: | |
| - app_name: byc-wa-app | |
| dockerfile: ClientAdvisor/App/WebApp.Dockerfile | |
| password_secret: DOCKER_PASSWORD | |
| - app_name: byc-wa-fn | |
| dockerfile: ClientAdvisor/AzureFunction/Dockerfile | |
| password_secret: DOCKER_PASSWORD | |
| uses: ./.github/workflows/build-docker.yml | |
| with: | |
| registry: bycwacontainerreg.azurecr.io | |
| username: bycwacontainerreg | |
| password_secret: ${{ matrix.password_secret }} | |
| app_name: ${{ matrix.app_name }} | |
| dockerfile: ${{ matrix.dockerfile }} | |
| push: ${{ github.event_name == 'push' && github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo' }} | |
| secrets: inherit |