From 90fb9494dc3d75cb01264cb1bec5a60b8371257e Mon Sep 17 00:00:00 2001 From: omidshj Date: Thu, 16 May 2024 21:22:38 +0330 Subject: [PATCH] dev --- i3.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 i3.yml diff --git a/i3.yml b/i3.yml new file mode 100644 index 0000000..6d3d67c --- /dev/null +++ b/i3.yml @@ -0,0 +1,11 @@ +--- +- name: update inception + hosts: all + tasks: + - name: Go to the application directory + command: chdir=/root/code/inception git pull origin master + register: git_output + + - name: Run build script + command: chdir=/root/code/inception ./build.sh + when: git_output.changed \ No newline at end of file