Archon/.gitea/workflows/README.md
Luis Erlacher eb0748f597
Some checks failed
Build Images / build-server (push) Failing after 1s
Build Images / build-mcp (push) Failing after 1s
Build Images / build-frontend (push) Failing after 1s
Build Images / build-agents (push) Failing after 1s
ci: simplify workflow to work without Node.js dependencies
- Remove complex workflows that required GitHub Actions
- Add simple build-images.yml using pure shell commands
- No external action dependencies (checkout, buildx, build-push-action)
- Direct docker build and push commands
- Works with act_runner without Node.js

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-05 13:12:09 -03:00

847 B

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!