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 9b436df commit dae2960Copy full SHA for dae2960
.github/workflows/deploy_to_azure.yml
@@ -33,8 +33,10 @@ jobs:
33
- name: Install dependencies
34
run: pip install -r hvalfangst_function/requirements.txt
35
36
- - name: Zip artifact for deployment
37
- run: cd hvalfangst_function && zip -r ../release.zip ./*
+ - name: Zip artifact for deployment including venv
+ run: |
38
+ cd hvalfangst_function
39
+ zip -r ../release.zip ./* ../venv
40
41
- name: Upload artifact for deployment job
42
uses: actions/upload-artifact@v4
@@ -56,9 +58,6 @@ jobs:
56
58
with:
57
59
name: hvalfangst-function-app
60
- - name: Unzip artifact for deployment
- run: unzip release.zip
61
-
62
- name: Login to Azure with OIDC
63
uses: azure/login@v2
64
0 commit comments