From c22876d405b80fcb887e6512b80140d388c84449 Mon Sep 17 00:00:00 2001 From: xdwarf Date: Mon, 8 Jun 2026 21:07:47 +0200 Subject: [PATCH] Add Gitea Actions deploy workflow --- .gitea/workflows/deploy.yml | 16 ++++++++++++++++ 1 file changed, 16 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..23c319c --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,16 @@ +name: Deploy mael-landing + +on: + push: + branches: + - master + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Pull and restart + run: | + cd /home/mads/mael-landing + git pull origin master + docker compose restart \ No newline at end of file