We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7a4566 commit 9795262Copy full SHA for 9795262
.github/workflows/gh-pages.yml
@@ -6,6 +6,9 @@ on:
6
- main
7
pull_request:
8
9
+env:
10
+ HUGO_VERSION: "0.147.8"
11
+
12
jobs:
13
build:
14
runs-on: ubuntu-24.04
@@ -21,8 +24,8 @@ jobs:
21
24
22
25
- name: Setup Hugo
23
26
run: |
- sudo apt-get update
- sudo apt-get install hugo
27
+ wget https://github.com/gohugoio/hugo/releases/download/v${{ env.HUGO_VERSION }}/hugo_${{ env.HUGO_VERSION }}_linux-amd64.deb
28
+ sudo dpkg -i hugo_${{ env.HUGO_VERSION }}_linux-amd64.deb
29
30
- name: Build
31
run: hugo --minify
0 commit comments