From 1979a123cb04f593c065303cc795965f13155d56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alo=C3=AFs=20Micard?= Date: Mon, 23 Dec 2024 08:49:39 +0100 Subject: [PATCH] Add hugo action --- .forgejo/workflows/deploy.yaml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index d470cda..55e164f 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -1,6 +1,19 @@ +name: Deploy + on: [push] jobs: - test: + deploy: runs-on: docker steps: - - run: echo All Good + - uses: actions/checkout@v4 + with: + submodules: true + fetch-depth: 0 + + - name: Setup Hugo + uses: peaceiris/actions-hugo@v3 + with: + hugo-version: '0.119.0' + + - name: Build + run: hugo