From 24a03827c8e531f0b8ef804511381e7306fd0804 Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Sat, 12 Jul 2025 00:24:10 -0400 Subject: [PATCH 1/2] Remove external dependency --- .forgejo/workflows/build_and_deploy_site.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/build_and_deploy_site.yml b/.forgejo/workflows/build_and_deploy_site.yml index 5e26418..1359084 100644 --- a/.forgejo/workflows/build_and_deploy_site.yml +++ b/.forgejo/workflows/build_and_deploy_site.yml @@ -15,11 +15,8 @@ jobs: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - name: Setup Hugo - uses: peaceiris/actions-hugo@v3 - with: - hugo-version: "0.119.0" - # extended: true + - name: Setup + run: apt-get install hugo -y - name: Build run: hugo --minify From da797997c04c4c04044a5a39fb53538510dbd5f1 Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Sat, 12 Jul 2025 00:25:32 -0400 Subject: [PATCH 2/2] Downgrade checkout --- .forgejo/workflows/build_and_deploy_site.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/build_and_deploy_site.yml b/.forgejo/workflows/build_and_deploy_site.yml index 1359084..b8e48ce 100644 --- a/.forgejo/workflows/build_and_deploy_site.yml +++ b/.forgejo/workflows/build_and_deploy_site.yml @@ -10,7 +10,7 @@ jobs: deploy: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod