From 0b63a6698d2fac96c278f13263cd7fbb32eef232 Mon Sep 17 00:00:00 2001 From: emil Date: Thu, 30 Apr 2026 00:59:22 +0300 Subject: [PATCH] Fix CI: install Hugo before build step Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88e0d4f..5827bfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Setup Hugo + uses: peaceiris/actions-hugo@v2 + with: + hugo-version: 'latest' + - name: Set up Node.js uses: actions/setup-node@v4 with: @@ -32,7 +37,7 @@ jobs: run: npm run build:css - name: Build site with Hugo - run: npm run build + run: hugo --minify - name: Verify Hugo output exists run: |