Skip to content

Commit d00257b

Browse files
committed
fix: silence the wget in workflow hugo.yaml
1 parent 4711c9d commit d00257b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/hugo.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
echo "[INFO] no HUGO_VERSION specified, use latest";
3030
HUGO_VERSION=`curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | jq -r .tag_name | sed 's/^.//'`;
3131
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
3434
sudo dpkg -i ${{ runner.temp }}/hugo.deb
3535
- name: Checkout
3636
uses: actions/checkout@v4

0 commit comments

Comments
 (0)