File tree Expand file tree Collapse file tree 4 files changed +74
-57
lines changed Expand file tree Collapse file tree 4 files changed +74
-57
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Build ClientAdvisor Docker Images
2+
3+ on :
4+ push :
5+ branches : [main]
6+ paths :
7+ - ClientAdvisor/**
8+ pull_request :
9+ branches : [main]
10+ types :
11+ - opened
12+ - ready_for_review
13+ - reopened
14+ - synchronize
15+ paths :
16+ - ClientAdvisor/**
17+ merge_group :
18+
19+ jobs :
20+ docker-build :
21+ strategy :
22+ matrix :
23+ include :
24+ - app_name : clientadvisor-webapp
25+ dockerfile : ClientAdvisor/App/WebApp.Dockerfile
26+ password_secret : DOCKER_PASSWORD
27+ - app_name : clientadvisor-azurefunction
28+ dockerfile : ClientAdvisor/AzureFunction/Dockerfile
29+ password_secret : DOCKER_PASSWORD
30+
31+ uses : ./.github/workflows/build-docker.yml
32+ with :
33+ registry : pslpricicdcontainerreg.azurecr.io
34+ username : pslpricicdcontainerreg
35+ app_name : ${{ matrix.app_name }}
36+ dockerfile : ${{ matrix.dockerfile }}
37+ push : true # Adjust this logic as necessary
38+ secrets : inherit
Original file line number Diff line number Diff line change 3232
3333 - name : Checkout
3434 uses : actions/checkout@v4
35-
35+
3636 - name : Docker Login
3737 if : ${{ inputs.push }}
3838 uses : docker/login-action@v3
Original file line number Diff line number Diff line change 1+ name : Build ResearchAssistant Docker Images
2+
3+ on :
4+ push :
5+ branches : [main]
6+ paths :
7+ - ResearchAssistant/**
8+ pull_request :
9+ branches : [main]
10+ types :
11+ - opened
12+ - ready_for_review
13+ - reopened
14+ - synchronize
15+ paths :
16+ - ResearchAssistant/**
17+ merge_group :
18+
19+ jobs :
20+ docker-build :
21+ strategy :
22+ matrix :
23+ include :
24+ - app_name : researchassistant-webapp
25+ dockerfile : ResearchAssistant/App/WebApp.Dockerfile
26+ password_secret : DOCKER_PASSWORD_RESEARCHASSISTANT
27+
28+ uses : ./.github/workflows/build-docker.yml
29+ with :
30+ registry : pslpriracontainerreg.azurecr.io
31+ username : pslpriracontainerreg
32+ app_name : ${{ matrix.app_name }}
33+ dockerfile : ${{ matrix.dockerfile }}
34+ push : true # Adjust this logic as necessary
35+ secrets : inherit
You can’t perform that action at this time.
0 commit comments