From a4a447867ff181bb27480d5b5ab8ed36f04ad2c6 Mon Sep 17 00:00:00 2001 From: Rene Arumetsa Date: Sun, 26 Apr 2026 21:51:07 +0300 Subject: [PATCH] Added ci/cd --- .gitea/workflows/deploy.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/deploy.yml diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..eedc00d --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,17 @@ + name: Deploy + + on: + push: + branches: [master] + + jobs: + deploy: + runs-on: linux + steps: + - name: Deploy + run: | + cd ~/tipibot + git pull + source .venv/bin/activate + pip install -r requirements.txt + systemctl restart tipibot