From 307b02e816126eb85844b2cf77d2afc631c2bf8b Mon Sep 17 00:00:00 2001 From: will Date: Wed, 8 Jul 2026 02:17:28 +0000 Subject: [PATCH] add 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..e4dd210 --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,16 @@ +name: deploy +on: + push: + branches: [master] +jobs: + deploy: + runs-on: ubuntu-latest + container: + image: hugomods/hugo:exts + volumes: + - /var/www/reground.org:/var/www/reground.org + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + - run: hugo --minify -d /var/www/reground.org