From ec847ad2053e6fc6490cf060e80068f95bd8b62e Mon Sep 17 00:00:00 2001 From: Jeroen Ooms Date: Mon, 19 Aug 2024 13:44:12 +0200 Subject: [PATCH] Add some extra cI --- .github/workflows/latest-hugo.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/latest-hugo.yml diff --git a/.github/workflows/latest-hugo.yml b/.github/workflows/latest-hugo.yml new file mode 100644 index 000000000..86465f072 --- /dev/null +++ b/.github/workflows/latest-hugo.yml @@ -0,0 +1,21 @@ +# This workflow is not a blocker but to identify issues with upcoming hugo versions +on: + push: + branches: + - 'main' + workflow_dispatch: + +name: Test build with latest Hugo + +jobs: + build: + name: Test build with latest hugo + runs-on: macOS-latest + steps: + - name: Install latest hugo + run: brew install hugo || true + + - uses: actions/checkout@v4 + + - name: Build the website + run: hugo --minify --buildFuture