22 lines
637 B
YAML
22 lines
637 B
YAML
---
|
|
- name: Include gitea_runner download
|
|
ansible.builtin.include_tasks: download_gitea_runner.yml
|
|
|
|
- name: Create gitea_runner config file
|
|
ansible.builtin.template:
|
|
src: gitea-runner-config.yaml.j2
|
|
dest: "{{ gitea_runner_config_dir }}/config.yaml"
|
|
owner: "{{ gitea_runner_service_user }}"
|
|
group: "{{ gitea_runner_service_user }}"
|
|
mode: "0644"
|
|
|
|
- name: Include validation
|
|
ansible.builtin.include_tasks: validate.yml
|
|
|
|
- name: Include service setup
|
|
ansible.builtin.include_tasks: service.yml
|
|
|
|
- name: Include registration
|
|
ansible.builtin.include_tasks: register.yml
|
|
when: not gitea_runner_skip_registration
|