Files
Agents/.gitea/workflows/deploy-agent.yaml
T
2026-05-10 15:05:42 +02:00

24 lines
453 B
YAML

name: Build and Push Agent API
on:
push:
branches:
- main
jobs:
build:
runs-on: home
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Build Docker image
run: |
docker build \
-t 192.168.1.185:5010/agents-api:latest \
-f docker/Dockerfile .
- name: Push image to registry
run: |
docker push 192.168.1.185:5010/agents-api:latest