16 lines
493 B
YAML
16 lines
493 B
YAML
---
|
|
# task/main file for deploy_gitea_runner
|
|
- name: "Import prerequisites.yml"
|
|
ansible.builtin.include_tasks: prerequisites.yml
|
|
|
|
- name: "Import configure.yml"
|
|
ansible.builtin.include_tasks: configure.yml
|
|
|
|
- name: "Import install.yml"
|
|
ansible.builtin.include_tasks: "install_{{ deploy_gitea_runner_deploy_method }}.yml"
|
|
|
|
- name: "Import register.yml"
|
|
ansible.builtin.include_tasks: register.yml
|
|
when: deploy_gitea_runner_register
|
|
and deploy_gitea_runner_deploy_method == 'host'
|