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

@ -46,4 +46,6 @@
- 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