From 8120fa26e644dde2fdf5272987ca5d99cb0e8181 Mon Sep 17 00:00:00 2001 From: Toby Scott Date: Wed, 20 Mar 2024 20:09:58 +1100 Subject: [PATCH] attempt to fix build --- .github/workflows/build-and-deploy.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 7fcc190..48c0895 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -34,9 +34,12 @@ jobs: steps: - name: Git Checkout uses: actions/checkout@v3 - with: - submodules: recursive # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod + # with: + # submodules: recursive # Fetch Hugo themes (true OR recursive) + # fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod + + - name: Get submodules + run: git submodule update --init --recursive - name: Install Hugo run: sudo apt install hugo -y