Anna Sirota
9c582462d8
Accidental backward-incompatible changes appear regularly in poetry, which leads to a regular chore of fixing this part of tooling, or having to stay on the old version of it for a very long time, which is bound to break.
13 lines
264 B
YAML
13 lines
264 B
YAML
---
|
|
- name: Pulling latest branch "{{ branch }}"
|
|
become: true
|
|
become_user: "{{ user }}"
|
|
ansible.builtin.git:
|
|
repo: "{{ source_url }}"
|
|
dest: "{{ dir.source }}"
|
|
accept_hostkey: true
|
|
version: "{{ branch }}"
|
|
recursive: true
|
|
tags:
|
|
- git
|