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