20 lines
565 B
YAML
20 lines
565 B
YAML
---
|
|
- name: Pulling latest branch "{{ branch }}"
|
|
ansible.builtin.git:
|
|
repo: "{{ source_url }}"
|
|
dest: "{{ dir.source }}"
|
|
accept_hostkey: true
|
|
version: "{{ branch }}"
|
|
tags:
|
|
- git
|
|
|
|
- name: Installing Python dependencies in {{ dir.source }}/website
|
|
import_tasks: install_python_dependencies.yaml
|
|
vars:
|
|
venv_path: "{{ dir.source }}/website"
|
|
|
|
- name: Installing Python dependencies in {{ dir.source }}/launcher_authenticator
|
|
import_tasks: install_python_dependencies.yaml
|
|
vars:
|
|
venv_path: "{{ dir.source }}/launcher_authenticator"
|