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 276e461 commit 3f7d6afCopy full SHA for 3f7d6af
.github/workflows/test-docs.yml
@@ -7,18 +7,19 @@ on:
7
jobs:
8
test-build:
9
runs-on: ubuntu-latest
10
+ env:
11
+ HUGO_VERSION: 0.122.0
12
steps:
13
- name: Checkout
- uses: actions/checkout@v1
14
+ uses: actions/checkout@v4
15
- name: Setup Node
- uses: actions/setup-node@v1
16
+ uses: actions/setup-node@v4
17
with:
- node-version: '10.x'
18
+ node-version: ''
19
- name: Setup Hugo
- uses: peaceiris/actions-hugo@v2
- with:
20
- hugo-version: '0.66.0'
21
- extended: true
+ run: |
+ wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
22
+ && sudo dpkg -i ${{ runner.temp }}/hugo.deb
23
- name: Build Hugo Docs
24
run: |
25
cd src/docs
0 commit comments