17 lines
431 B
YAML
17 lines
431 B
YAML
---
|
|
- name: Get original Python version
|
|
ansible.builtin.include_tasks: python_check.yaml
|
|
vars:
|
|
target_var: orig_python
|
|
|
|
- name: Perform official repository updates
|
|
ansible.builtin.import_tasks: repo_upgrade.yaml
|
|
|
|
- name: Get new Python version
|
|
ansible.builtin.include_tasks: python_check.yaml
|
|
vars:
|
|
target_var: new_python
|
|
|
|
- name: Perform AUR updates and rebuilds
|
|
ansible.builtin.import_tasks: aur_upgrade.yaml
|