Files
tools-app/.gitea/workflows/build.yaml
Grzegorz Kucmierz bdbb561740
All checks were successful
Deploy to Production / deploy (push) Successful in 7s
Add Docker, Nginx, and Gitea workflow configuration
2026-02-26 22:14:05 +00:00

20 lines
406 B
YAML

name: Deploy to Production
on:
push:
branches:
- main
jobs:
deploy:
runs-on: self-hosted
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Build and deploy with Docker Compose
run: |
# Clean up previous containers if needed
docker compose down --remove-orphans || true
docker compose up -d --build