We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7e4e54 commit f0ab074Copy full SHA for f0ab074
1 file changed
.github/workflows/deploy.yaml
@@ -26,8 +26,13 @@ jobs:
26
- name: Install dependencies
27
run: npm install
28
29
+ # - name: Archive production artifacts
30
+ # run: zip -r functionapp.zip . -x '*.git*'
31
+
32
- name: Archive production artifacts
- run: zip -r functionapp.zip . -x '*.git*'
33
+ run: |
34
+ # Ensure the ZIP command is excluding unnecessary files like `.git`
35
+ powershell Compress-Archive -Path * -DestinationPath functionapp.zip -Force
36
37
- name: Deploy to Azure Functions
38
uses: azure/functions-action@v1
0 commit comments