From 785249c2dc99b6338a6dcc451e27fc2fc03c8fc1 Mon Sep 17 00:00:00 2001 From: Madison Rye Progress Date: Sun, 15 Mar 2026 12:38:06 -0700 Subject: [PATCH] Switch to actions-hugo --- .gitea/workflows/deploy.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 7300529..42a3885 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -7,13 +7,19 @@ on: jobs: deploy: - runs-on: hugo + runs-on: ubuntu-latest steps: - name: Check out repo uses: actions/checkout@v6 with: submodules: 'true' + - name: Install Hugo + uses: peaceiris/actions-hugo@v3 + with: + hugo-version: '0.157.0' + extended: true + + - name: Build site - run: hugo build --gc --minify --baseURL ${{ vars.BASE_URL }} --destination ${{ vars.DESTINATION }} - shell: sh + run: hugo build --gc --minify --baseURL ${{ vars.BASE_URL }}