Skip to content

Commit 8f47bb1

Browse files
committed
More CI/CD fixes.
1 parent 169feda commit 8f47bb1

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

.github/workflows/hugo.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ jobs:
4343
uses: actions/checkout@v4
4444
with:
4545
submodules: recursive
46+
- name: Setup Go
47+
uses: actions/setup-go@v5
48+
with:
49+
go-version: '1.23'
50+
- name: Download Hugo modules
51+
run: hugo mod get
4652
- name: Setup Pages
4753
id: pages
4854
uses: actions/configure-pages@v5

go.mod

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module github.com/zylisp/zylisp.github.io
2+
3+
go 1.24.3
4+
5+
require github.com/panr/hugo-theme-terminal/v4 v4.2.3 // indirect

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github.com/panr/hugo-theme-terminal/v4 v4.2.3 h1:BU4x0qPDTZao6kzT4hWrOwGVaYgo5GesQZr+ATMsQoM=
2+
github.com/panr/hugo-theme-terminal/v4 v4.2.3/go.mod h1:W0sFodm5ipL5gjRqOFjg4zD+euoQ8hCtyDDtqSpihxM=

0 commit comments

Comments
 (0)