Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion sidecar/ansible/provision.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,25 @@
command: python3.11 -m pip install --upgrade pip
become: yes

- name: Check if directory is a git repository
stat:
path: '{{ ansible_env.HOME }}/draft/.git'
register: git_repo

- name: Clone repository if it doesn't exist
git:
repo: 'https://github.com/private-attribution/draft.git'
dest: '{{ ansible_env.HOME }}/draft'
update: no
when: not git_repo.stat.exists


- name: Pull repository if it does exist
git:
repo: 'https://github.com/private-attribution/draft.git'
dest: '{{ ansible_env.HOME }}/draft'
clone: false
version: main
when: git_repo.stat.exists

- name: Create virtualenv if it doesn't exist
command: python3.11 -m venv .venv
Expand Down
Loading