2023-06-24 15:44:22 +00:00
|
|
|
---
|
|
|
|
# task/main file for deploy_gitea_runner
|
2023-07-27 17:12:18 +00:00
|
|
|
- name: "Import prerequisites.yml"
|
|
|
|
ansible.builtin.include_tasks: prerequisites.yml
|
|
|
|
|
2023-08-11 20:05:47 +00:00
|
|
|
- name: "Import configure.yml"
|
|
|
|
ansible.builtin.include_tasks: configure.yml
|
2023-08-12 14:01:42 +00:00
|
|
|
|
2023-12-02 22:02:05 +00:00
|
|
|
- name: "Import install.yml"
|
|
|
|
ansible.builtin.include_tasks: "install_{{ deploy_gitea_runner_deploy_method }}.yml"
|
|
|
|
|
2023-08-12 14:01:42 +00:00
|
|
|
- name: "Import register.yml"
|
|
|
|
ansible.builtin.include_tasks: register.yml
|
|
|
|
when: deploy_gitea_runner_register
|
|
|
|
and deploy_gitea_runner_deploy_method == 'host'
|