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 283a42e commit 33b5f7eCopy full SHA for 33b5f7e
.github/workflows/deploy_to_azure.yml
@@ -61,6 +61,9 @@ jobs:
61
- name: Unzip artifact for deployment
62
run: unzip release.zip
63
64
+ - name: Remove zipped file after unzipping
65
+ run: rm release.zip
66
+
67
- name: Login to Azure with OIDC
68
uses: azure/login@v2
69
with:
@@ -74,7 +77,7 @@ jobs:
74
77
75
78
app-name: 'hvalfangstlinuxfunctionapp'
76
79
slot-name: 'Production'
- package: release.zip
80
+ package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}
81
scm-do-build-during-deployment: true
82
enable-oryx-build: true
83
0 commit comments