Add cleaning after action
parent
de12efa1f0
commit
7e1e5f4422
|
@ -8,3 +8,20 @@
|
|||
tags:
|
||||
- install
|
||||
|
||||
- name: "Clean cache yarn"
|
||||
shell: "yarn cache clean"
|
||||
args:
|
||||
chdir: "{{ item.home }}/"
|
||||
become: yes
|
||||
become_user: "{{ item.account }}"
|
||||
loop: "{{ ghost }}"
|
||||
when: ghost_deploy_site in item.name
|
||||
|
||||
- name: "NPM Cache clean"
|
||||
shell: "npm cache clean --force"
|
||||
args:
|
||||
chdir: "{{ item.home }}/"
|
||||
become: yes
|
||||
become_user: "{{ item.account }}"
|
||||
loop: "{{ ghost }}"
|
||||
when: ghost_deploy_site in item.name
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
group: "{{ item.account }}"
|
||||
loop: "{{ ghost }}"
|
||||
become: yes
|
||||
become_user : "{{ item.account }}"
|
||||
become_user: "{{ item.account }}"
|
||||
when: ghost_deploy_site in item.name
|
||||
tags:
|
||||
- install
|
||||
|
@ -29,7 +29,7 @@
|
|||
chdir: "{{ item.home }}"
|
||||
loop: "{{ ghost }}"
|
||||
become: yes
|
||||
become_user : "{{ item.account }}"
|
||||
become_user: "{{ item.account }}"
|
||||
when: ghost_deploy_site in item.name
|
||||
tags:
|
||||
- install
|
||||
|
@ -40,10 +40,12 @@
|
|||
chdir: "{{ item.home }}"
|
||||
loop: "{{ ghost }}"
|
||||
become: yes
|
||||
become_user : "{{ item.account }}"
|
||||
become_user: "{{ item.account }}"
|
||||
when: ghost_deploy_site in item.name
|
||||
tags:
|
||||
- install
|
||||
notify:
|
||||
- Restart service
|
||||
- Clean cache yarn
|
||||
- NPM Cache clean
|
||||
|
||||
|
|
|
@ -11,3 +11,5 @@
|
|||
- update
|
||||
notify:
|
||||
- Restart service
|
||||
- Clean cache yarn
|
||||
- NPM Cache clean
|
||||
|
|
Loading…
Reference in New Issue