We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d66d55 commit c4859eaCopy full SHA for c4859ea
.github/workflows/_dockerTemplate.yml renamed to .github/workflows/_containerTemplate.yml
.github/workflows/functionApp.yml
@@ -21,6 +21,19 @@ jobs:
21
with:
22
python_version: "3.10"
23
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 }}
37
38
function_deploy:
39
uses: ./.github/workflows/_functionAppDeployTemplate.yml
0 commit comments