feat: add gitea-actions role for Gitea act-runner

- Create gitea-runner user with podman access
- Install podman-docker for docker CLI compatibility
- Download and configure act_runner binary
- Systemd service for act_runner daemon
- Host-mode runner labels for Fedora

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Bastian de Byl
2026-01-01 13:13:42 -05:00
parent 2fd44fd450
commit 5832497bbd
10 changed files with 194 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
---
- name: install podman-docker for docker CLI compatibility
become: true
ansible.builtin.dnf:
name:
- podman-docker
- golang
state: present
tags: gitea-actions
- name: enable podman socket for gitea-runner
become: true
become_user: "{{ gitea_runner_user }}"
ansible.builtin.systemd:
name: podman.socket
enabled: true
state: started
scope: user
tags: gitea-actions