From 988c4a899b916ad5a831f3dc6532db8a1316ad25 Mon Sep 17 00:00:00 2001 From: Grzegorz Kucmierz Date: Thu, 12 Feb 2026 21:10:46 +0100 Subject: [PATCH] ci: add gitea actions workflow --- .gitea/workflows/deploy.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/deploy.yaml diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..85c8fd4 --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,18 @@ +name: Deploy to Production +run-name: Deploy to Production by @${{ github.actor }} + +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: | + docker compose up -d --build