From 1df9c8ef18e45858c61865d11ed1734a5cf56776 Mon Sep 17 00:00:00 2001 From: Demian Date: Sat, 6 Jun 2026 18:57:42 +0200 Subject: [PATCH] Fix submodule checkout in workflow --- .gitea/workflows/deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 9f47374..2860bf3 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -10,7 +10,11 @@ jobs: steps: - uses: actions/checkout@v4 with: - submodules: recursive + fetch-depth: 0 + + - name: Checkout submodules + run: | + git submodule update --init --recursive - name: Setup Hugo uses: peaceiris/actions-hugo@v3