Files
Agents/.gitea/workflows/deploy-agent.yaml
T
TimHoogervorst 6dcba9230f
Build and Push Agent API / build (push) Failing after 1s
lol always check the copy paste...
2026-05-10 15:08:23 +02:00

25 lines
500 B
YAML

name: Build and Push Agent API
on:
push:
branches:
- main
jobs:
build:
runs-on: home
steps:
- name: Checkout repo
run: |
git clone http://gitea:3000/TimHoogervorst/Agents.git .
- 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