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 0e1768aCopy full SHA for 0e1768a
.github/workflows/build_docs.yml
@@ -21,7 +21,11 @@ jobs:
21
- uses: actions/checkout@v5
22
- name: Install Node and dependencies
23
uses: mongodb-labs/drivers-github-tools/node/setup@v2
24
- - run: sudo apt update && sudo apt-get install hugo
+ - name: Install Hugo
25
+ run: |
26
+ mkdir ~/hugo
27
+ curl -L https://github.com/gohugoio/hugo/releases/download/v0.150.0/hugo_0.150.0_linux-arm.tar.gz | tar -xzf - -C ~/hugo
28
+ echo "$PATH:~/hugo" >> $GITHUB_PATH
29
- name: Build Docs
30
run: npm run build:docs -- --yes
31
- name: Open Pull Request
0 commit comments