From ddddaaac8d8b4010650e54418c0d6898cc15e3d1 Mon Sep 17 00:00:00 2001 From: moanos Date: Sun, 9 Nov 2025 09:01:25 +0100 Subject: [PATCH] fix: debug --- .forgejo/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 349d11a..ec6ca80 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -21,6 +21,7 @@ jobs: run: | apt-get update -y apt-get install -y wget tar jq # Install necessary components + ldd --version # Use the GitHub API to get information about the latest release, then use jq to find out the tag name latest=$(wget -qO- https://api.github.com/repos/gohugoio/hugo/releases/latest | jq -r '.tag_name') echo "Latest Hugo version: $latest" @@ -30,6 +31,7 @@ jobs: tar -xzf hugo.tar.gz hugo mv hugo /usr/local/bin/hugo chmod +x /usr/local/bin/hugo + ldd /usr/local/bin/hugo hugo version - name: Build site