From 38e63bc1602f6cf23f5df73b22f4159670983efa Mon Sep 17 00:00:00 2001 From: Luis Correia Date: Fri, 14 Jun 2024 09:36:41 +0100 Subject: [PATCH] Add lfs flag to checked out files --- .github/workflows/hugo.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/hugo.yaml b/.github/workflows/hugo.yaml index b6a12bb..5681ad7 100644 --- a/.github/workflows/hugo.yaml +++ b/.github/workflows/hugo.yaml @@ -43,9 +43,13 @@ jobs: with: submodules: recursive fetch-depth: 0 - - name: checkoutLFS - uses: actions/checkout@v4 - run: git lfs pull + lfs: 'true' + - name: Checkout LFS + uses: actions/checkout@v4 + with: + submodules: recursive + fetch-depth: 0 + - run: git lfs pull - name: Setup Pages id: pages uses: actions/configure-pages@v4