Files
gitlab-runner/tasks/main.yml
2024-02-25 01:14:24 +03:00

17 lines
348 B
YAML

---
- name: gitlab runner installation
include_tasks: install.yml
- name: gitlab runner configuration
include_tasks: config.yml
- name: gitlab runner registration
include_tasks: registration.yml
- name: GitLab Runner started service
systemd_service:
name: "gitlab-runner"
state: started
daemon_reload: true
enabled: true