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 4ab2632 commit 64aea44Copy full SHA for 64aea44
.github/workflows/build_docs.yml
@@ -3,6 +3,7 @@ name: Build and commit docs
3
on:
4
push:
5
branches: ['main']
6
+ workflow_dispatch: {}
7
8
permissions:
9
contents: write
@@ -21,7 +22,11 @@ jobs:
21
22
- uses: actions/checkout@v5
23
- name: Install Node and dependencies
24
uses: mongodb-labs/drivers-github-tools/node/setup@v2
- - run: sudo apt update && sudo apt-get install hugo
25
+ - name: Install Hugo
26
+ run: |
27
+ mkdir ~/hugo
28
+ curl -L https://github.com/gohugoio/hugo/releases/download/v0.150.0/hugo_0.150.0_linux-arm.tar.gz | tar -xzf - -C ~/hugo
29
+ echo "$PATH:~/hugo" >> $GITHUB_PATH
30
- name: Build Docs
31
run: npm run build:docs -- --yes
32
- name: Open Pull Request
0 commit comments