Commit 6070c6d 1 parent 4711c9d commit 6070c6d Copy full SHA for 6070c6d
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,16 @@ jobs:
21
21
runs-on : ubuntu-latest
22
22
steps :
23
23
- name : Install Hugo CLI
24
- # Manually set hugo version, latest by default
25
24
env :
25
+ # Manually set hugo version, latest by default
26
26
HUGO_VERSION : " "
27
27
run : |
28
28
if [ -z $HUGO_VERSION ]; then
29
29
echo "[INFO] no HUGO_VERSION specified, use latest";
30
30
HUGO_VERSION=`curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | jq -r .tag_name | sed 's/^.//'`;
31
31
fi
32
- echo "[INFO] Hugo version : ${HUGO_VERSION}"
33
- wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb
32
+ echo "[INFO] HUGO_VERSION : ${HUGO_VERSION}"
33
+ wget -qO ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb
34
34
sudo dpkg -i ${{ runner.temp }}/hugo.deb
35
35
- name : Checkout
36
36
uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments