Update .github/workflows/build.yml
Some checks failed
Build Site / build (push) Has been cancelled

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Derek Slenk 2025-06-29 22:37:52 -04:00 committed by GitHub
parent 5a325d0273
commit 0265c44006
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,8 +19,18 @@ jobs:
submodules: recursive submodules: recursive
fetch-depth: 0 fetch-depth: 0
- name: Cache Hugo modules
uses: actions/cache@v3
with:
path: .hugo
key: ${{ runner.os }}-hugo-${{ steps.hugo-version.outputs.version }}-${{ hashFiles('**/go.mod') }}
restore-keys: |
${{ runner.os }}-hugo-${{ steps.hugo-version.outputs.version }}
${{ runner.os }}-hugo-
- name: Setup Hugo - name: Setup Hugo
uses: peaceiris/actions-hugo@v3 uses: peaceiris/actions-hugo@v3
id: hugo-version
with: with:
hugo-version: 'latest' hugo-version: 'latest'
extended: true extended: true