From 7b1fa91b41c7bdb99e09c43e6af1e2205d2322d4 Mon Sep 17 00:00:00 2001 From: Patrick Toal Date: Wed, 20 Dec 2023 13:53:47 -0500 Subject: [PATCH] Fix cleanup --- deploy_application.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/deploy_application.yml b/deploy_application.yml index ecdb449..b3134f7 100644 --- a/deploy_application.yml +++ b/deploy_application.yml @@ -26,8 +26,12 @@ dest: /usr/share/nginx/html remote_src: true + - name: Cleanup temp file + ansible.builtin.file: + path: /tmp/build-artifact-{{ artifact_version }}.tar.gz + state: absent + - name: Clean up artifact download ansible.builtin.file: path: /tmp/BABFrontend.zip state: absent -