From e1655375f8194b9a0d882b02eda31c8e471e5b2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Krzy=C5=BCanowski?= Date: Fri, 17 Jan 2025 01:20:28 +0100 Subject: [PATCH] Install newer hugo version --- .gitea/workflows/build.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 3a436b4..7f2181a 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -10,7 +10,9 @@ jobs: with: submodules: recursive - run: sudo apt -qqy update - - run: sudo apt -qqy install hugo + - run: sudo apt -qqy install wget + - run: wget https://github.com/gohugoio/hugo/releases/download/v0.141.0/hugo_0.141.0_linux-amd64.deb + - run: sudo dpkg -i hugo_0.141.0_linux-amd64.deb - run: hugo - uses: actions/upload-artifact@v3 with: