fix: handle BlobDelete event type in batch_push_results
#693
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: Build Docker Images | |
on: | |
workflow_run: | |
workflows: [Tests] | |
types: [completed] | |
branches: [main] | |
pull_request: | |
branches: [main] | |
types: | |
- opened | |
- ready_for_review | |
- reopened | |
- synchronize | |
merge_group: | |
jobs: | |
docker-build: | |
if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }} | |
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: fruoccopublic.azurecr.io | |
username: fruoccopublic | |
app_name: ${{ matrix.app_name }} | |
dockerfile: ${{ matrix.dockerfile }} | |
push: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.head_branch == 'main' }} | |
secrets: inherit |