Files
cavepediav2/.gitea/workflows/build-push-agent.yaml
Paul Walko 17802994a5
Some checks failed
Build and Push Agent Docker Image / build (push) Successful in 1m7s
Build and Push Web Docker Image / build (push) Failing after 3m5s
self-host langgraph
2025-12-13 00:05:06 +01:00

34 lines
762 B
YAML

name: Build and Push Agent Docker Image
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'web/agent/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: git.seaturtle.pw
username: ${{ gitea.actor }}
password: ${{ secrets.ACTIONS_PUSH_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
context: ./web/agent
push: true
tags: git.seaturtle.pw/cavepedia/cavepediav2-agent:latest