Skip to content

Commit c4859ea

Browse files
committed
Add Container build job
1 parent 4d66d55 commit c4859ea

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/functionApp.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,19 @@ jobs:
2121
with:
2222
python_version: "3.10"
2323
function_directory: "./code/function"
24+
25+
function_container:
26+
uses: ./.github/workflows/_containerTemplate.yml
27+
name: "Function App Container"
28+
needs: [function_test]
29+
with:
30+
environment: "dev"
31+
working_directory: "./code/function"
32+
registry_uri: "ghcr.io"
33+
image_name: "AzureFunctionPython"
34+
secrets:
35+
USER_NAME: ${{ github.actor }}
36+
PASSWORD: ${{ secrets.GITHUB_TOKEN }}
2437

2538
function_deploy:
2639
uses: ./.github/workflows/_functionAppDeployTemplate.yml

0 commit comments

Comments
 (0)