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 1a650fc commit 8869001Copy full SHA for 8869001
ansible/deploy-frontend.yml
@@ -42,12 +42,18 @@
42
state: present
43
become: yes
44
45
- - name: Create zip package for deployment (excluding node_modules)
+ # - name: Create zip package for deployment (excluding node_modules)
46
+ # shell: |
47
+ # zip -r {{ ZIP_PATH }} . -x "node_modules/*"
48
+ # args:
49
+ # chdir: "{{ FRONTEND_PATH }}"
50
+ - name: Create zip package for deployment (including node_modules)
51
shell: |
- zip -r {{ ZIP_PATH }} . -x "node_modules/*"
52
+ zip -r {{ ZIP_PATH }} .
53
args:
54
chdir: "{{ FRONTEND_PATH }}"
55
56
+
57
- name: Deploy zip to Azure Web App
58
59
az webapp deploy \
0 commit comments