From cc37509ccee1189d157368f2b0425280445463ca Mon Sep 17 00:00:00 2001 From: twotalesanimation <80506065+twotalesanimation@users.noreply.github.com> Date: Sat, 1 Aug 2026 17:03:04 +0200 Subject: [PATCH] runner test --- .gitea/workflows/deploy.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index e69de29..12330b2 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,31 @@ +name: Deploy Vault CMS + +on: + push: + branches: + - master + +jobs: + deploy: + runs-on: ubuntu-latest + + container: + volumes: + - /opt:/opt + + steps: + - name: Deploy + shell: bash + run: | + set -e + + cd /opt/owicms-src + + git fetch origin + git reset --hard origin/master + + cd /opt/owicms + + docker compose up -d --build + + docker image prune -f \ No newline at end of file