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