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 5f3cb4a commit 0ddf6a4Copy full SHA for 0ddf6a4
.github/actions/build_documentation/action.yml
@@ -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