Archon/.gitea/workflows
Luis Erlacher 41e26b65cf
All checks were successful
Build Images / build-server (push) Successful in 1m31s
Build Images / build-mcp (push) Successful in 18s
Build Images / build-frontend (push) Successful in 3m57s
Build Images / build-agents (push) Successful in 1m6s
ci: fix checkout issue - add manual git clone
Previous workflow failed because runner had no source code.
Added manual git clone and checkout steps to each job.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-05 13:31:47 -03:00
..
build-images.yml ci: fix checkout issue - add manual git clone 2025-10-05 13:31:47 -03:00
README.md ci: simplify workflow to work without Node.js dependencies 2025-10-05 13:12:09 -03:00

Criei o serviço systemd conforme a documentação oficial do Gitea! Agora execute estes comandos:

1. Copiar o arquivo de serviço para o systemd

sudo cp /tmp/act_runner.service /etc/systemd/system/

2. Recarregar o systemd

sudo systemctl daemon-reload

3. Habilitar o serviço para iniciar no boot

sudo systemctl enable act_runner

4. Iniciar o serviço agora

sudo systemctl start act_runner

Depois disso, você poderá usar os comandos oficiais:

Iniciar o runner

sudo systemctl start act_runner

Parar o runner

sudo systemctl stop act_runner

Ver status

sudo systemctl status act_runner

Ver logs em tempo real

sudo journalctl -u act_runner -f

Reiniciar

sudo systemctl restart act_runner

Execute os comandos acima e me avise quando terminar para eu verificar se está funcionando!