ci: update Hugo deploy workflow (Hugo v0.154.1 extended, submodules, tar-over-ssh deploy)
Some checks failed
hugo deploy / build-and-deploy (push) Failing after 37s

This commit is contained in:
2026-01-11 00:48:36 +00:00
parent c8ba350751
commit 8693d62aa0

View File

@@ -18,7 +18,13 @@ jobs:
- name: Install Hugo
run: |
sudo apt-get update
sudo apt-get install -y hugo rsync openssh-client git
sudo apt-get install -y wget tar openssh-client git
HUGO_VERSION=0.154.1
ARCH=Linux-64bit
wget -q https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_${ARCH}.tar.gz -O /tmp/hugo.tar.gz
tar -xzf /tmp/hugo.tar.gz -C /tmp
sudo mv /tmp/hugo /usr/local/bin/hugo
hugo version
- name: Ensure submodules
run: |