14 lines
355 B
YAML
14 lines
355 B
YAML
---
|
|
- name: Ensure config directory exists
|
|
ansible.builtin.file:
|
|
path: "{{ gitea_runner_config_dir }}"
|
|
state: directory
|
|
mode: "0755"
|
|
|
|
- name: Create gitea_runner config file
|
|
ansible.builtin.template:
|
|
src: gitea-runner-config.yaml.j2
|
|
dest: "{{ gitea_runner_config_dir }}/config.yaml"
|
|
mode: "0644"
|
|
notify: Restart gitea-runner
|