12 lines
332 B
YAML
12 lines
332 B
YAML
---
|
|
- name: update inception
|
|
hosts: all
|
|
tasks:
|
|
- name: Change directory to inception
|
|
chdir: /root/code/inception # Replace with the actual path
|
|
- name: Pull latest changes from Git repository
|
|
git:
|
|
repo: https://gt.eron.co/eron/inception.git
|
|
update: yes
|
|
- name: Run build script
|
|
command: ./build.sh |