Add cleaning after action

This commit is contained in:
Dryusdan 2023-01-23 17:22:46 +01:00
parent de12efa1f0
commit 7e1e5f4422
3 changed files with 24 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -11,3 +11,5 @@
- update
notify:
- Restart service
- Clean cache yarn
- NPM Cache clean