Files
aiworker-agent/.gitea/workflows/build.yml
Hector Ros 1db98be556
Some checks failed
Build and Push Agent / build (push) Failing after 50s
Initial agent implementation
- Node.js Alpine base with Claude Code CLI
- MCP configuration for backend communication
- Git and development tools pre-installed
- K8s deployment manifests
- CI/CD workflow for automatic builds

Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
2026-01-20 01:23:30 +01:00

27 lines
750 B
YAML

name: Build and Push Agent
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build Docker image
run: docker build -t git.fuq.tv/admin/aiworker-agent:${{ gitea.sha }} .
- name: Tag as latest
run: docker tag git.fuq.tv/admin/aiworker-agent:${{ gitea.sha }} git.fuq.tv/admin/aiworker-agent:latest
- name: Login to Gitea registry
run: echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login git.fuq.tv -u admin --password-stdin
- name: Push images
run: |
docker push git.fuq.tv/admin/aiworker-agent:${{ gitea.sha }}
docker push git.fuq.tv/admin/aiworker-agent:latest