File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 32
32
33
33
jobs :
34
34
deployment :
35
- name : Function App Deploy
35
+ name : Container Build & Push
36
36
runs-on : ubuntu-latest
37
37
continue-on-error : false
38
38
environment : ${{ inputs.environment }}
@@ -50,12 +50,12 @@ jobs:
50
50
if : github.event_name != 'pull_request'
51
51
with :
52
52
cosign-release : ' v2.2.0'
53
-
53
+
54
54
# Install QEMU
55
55
- name : Set up QEMU
56
56
id : install_qemu
57
57
uses : docker/setup-qemu-action@v3
58
-
58
+
59
59
# Install BuildKit
60
60
- name : Install Buildx
61
61
id : install_buildx
91
91
uses : docker/build-push-action@v5.0.0
92
92
with :
93
93
context : ${{ inputs.working_directory }}
94
- file : . /Dockerfile
94
+ file : ${{ inputs.working_directory }} /Dockerfile
95
95
push : ${{ github.event_name != 'pull_request' }}
96
96
tags : ${{ steps.metadata.outputs.tags }}
97
97
labels : ${{ steps.metadata.outputs.labels }}
Original file line number Diff line number Diff line change 21
21
with :
22
22
python_version : " 3.10"
23
23
function_directory : " ./code/function"
24
-
24
+
25
25
function_container :
26
26
uses : ./.github/workflows/_containerTemplate.yml
27
27
name : " Function App Container"
Original file line number Diff line number Diff line change 1
- local.settings.json
1
+ local.settings.json
Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
8
8
COPY requirements.txt /
9
9
RUN pip install -r /requirements.txt
10
10
11
- COPY . /home/site/wwwroot
11
+ COPY . /home/site/wwwroot
You can’t perform that action at this time.
0 commit comments