Skip to content

updated workflow

updated workflow #26

name: Build Docker Images
on:
workflow_run:
workflows: [Tests]
types: [completed]
branches:
- main
- dev
- demo
pull_request:
branches:
- main
- dev
- demo
types:
- opened
- ready_for_review
- reopened
- synchronize
merge_group:
workflow_dispatch:
inputs:
branch_name:
description: 'Branch name'
required: true
jobs:
test-job:
name: Test Step
runs-on: ubuntu-latest
steps:

Check failure on line 32 in .github/workflows/build-docker-images.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-docker-images.yml

Invalid workflow file

You have an error in your yaml syntax on line 32
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch_name }}
- run: git branch
- run: env
- name: Get branch ...
run: |
echo "Input branch ${{github.event.inputs.branch_name}}"
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: ${{ github.event.workflow_run.head_branch == 'main' && 'fruoccopublic.azurecr.io' || 'cwydcontainerreg.azurecr.io'}}
username: ${{ github.event.workflow_run.head_branch == 'main' && 'fruoccopublic' || 'cwydcontainerreg'}}
app_name: ${{ matrix.app_name }}
dockerfile: ${{ matrix.dockerfile }}
branch: ${{ github.event.workflow_run.head_branch }}
push: ${{ github.event_name == 'workflow_run' && (github.event.workflow_run.head_branch == 'main' || github.event.workflow_run.head_branch == 'dev' || github.event.workflow_run.head_branch == 'demo') }}
secrets: inherit