From 5eed039d47b597c1912ade961f568e6404651806 Mon Sep 17 00:00:00 2001 From: Sped0n Date: Sat, 4 Nov 2023 18:58:53 +0800 Subject: [PATCH] feat(artifacts.yml): add step to setup Hugo with version 0.83.0 and extended mode The change was made to include a new step in the workflow to set up Hugo with version 0.83.0 and enable extended mode. This is necessary to ensure that the correct version of Hugo is used and that extended features are available during the build process. --- .github/workflows/artifacts.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index d225dcb..ab8bcb2 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -37,6 +37,12 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Setup Hugo + uses: peaceiris/actions-hugo@v2 + with: + hugo-version: '0.83.0' + extended: true + - name: Setup pnpm uses: pnpm/action-setup@v2 with: