Update deploy.yml

This commit is contained in:
Matt Reeves 2024-06-10 01:56:59 +00:00
parent 9640cc82d8
commit 3f14478270

View file

@ -8,8 +8,18 @@
shell: git pull shell: git pull
args: args:
chdir: "{{ repo_path }}" chdir: "{{ repo_path }}"
register: git_pull_output
- name: Display git pull output
debug:
var: git_pull_output.stdout_lines
- name: Restart services - name: Restart services
command: docker compose up -d command: docker compose up -d
args: args:
chdir: "{{ repo_path }}" chdir: "{{ repo_path }}"
register: docker_output
- name: Display docker output
debug:
var: docker_output.stdout_lines