Skip to content

Commit 0ddf6a4

Browse files
test?
1 parent 5f3cb4a commit 0ddf6a4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 'Build Documentation'
2+
description: 'Build documentation files'
3+
runs:
4+
using: 'composite'
5+
steps:
6+
- name: Install Hugo
7+
run: |
8+
mkdir hugo
9+
curl -L https://github.com/gohugoio/hugo/releases/download/v0.150.0/hugo_0.150.0_linux-amd64.tar.gz | tar -xzf - -C hugo
10+
echo "$(pwd)/hugo" >> $GITHUB_PATH
11+
12+
- name: Install Node and dependencies
13+
uses: mongodb-labs/drivers-github-tools/node/setup@v2
14+
15+
- name: Build Docs
16+
run: npm run build:docs -- --yes

0 commit comments

Comments
 (0)