Skip to content

Commit 9c33c46

Browse files
committed
Re-add original build step
1 parent 6c93890 commit 9c33c46

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/gh-pages.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,17 @@ permissions:
1212
jobs:
1313
build-hugo-website:
1414
uses: https://github.com/modelica/ma-hugo-theme/.github/workflow-templates/build-hugo-website.yml@f68cd5ef0ea651e00e45d607f2284ac68be6679e
15+
build:
16+
runs-on: ubuntu-24.04
17+
env:
18+
HUGO_VERSION: 0.143.1
19+
steps:
20+
- name: Install Hugo CLI
21+
run: |
22+
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
23+
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
24+
- name: Checkout
25+
uses: actions/checkout@v4
26+
with:
27+
submodules: recursive
28+
fetch-depth: 0

0 commit comments

Comments
 (0)