From 5526920ff86f6b8b5f5aff5dbe91f368fa322a95 Mon Sep 17 00:00:00 2001 From: Don Strawsburg Date: Fri, 20 Mar 2026 22:58:11 -0400 Subject: [PATCH] modded ci.yaml file to deploy both images --- .gitea/workflows/ci.yaml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 809ae31..6aa45b5 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -1,11 +1,20 @@ name: CI + on: push: - pull_request: + branches: + - develop jobs: - test: + deploy: runs-on: ubuntu steps: - uses: actions/checkout@v4 - - run: echo "Hello from Gitea Actions" \ No newline at end of file + + - name: Pull latest images + run: | + docker pull gitea.gofwd.group/forward_group/ballistic-builder-spring/spring-api:latest + docker pull gitea.gofwd.group/sean/shadow-gunbuilder-ai-proto/webui:latest + + - name: Recreate containers with new images + run: docker compose up -d \ No newline at end of file