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 6295110 commit b11e5bbCopy full SHA for b11e5bb
.github/workflows/publish-docs.yml
@@ -13,12 +13,25 @@ jobs:
13
- name: Checkout repo
14
uses: actions/checkout@v4
15
16
- - name: Setup node
17
- uses: actions/setup-node@v3
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
18
+ with:
19
+ always-auth: true
20
+ node-version: '18'
21
+ registry-url: https://npm.pkg.github.com/
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{secrets.AUTH_TOKEN}}
24
25
- name: Download Fern
26
run: npm install -g fern-api
27
28
+ - name: Build Navigation
29
+ run: |
30
+ cd custom-implementation
31
+ yarn
32
+ yarn build
33
+ cd ../
34
+
35
- name: Generate and Publish Docs
36
env:
37
FERN_TOKEN: ${{ secrets.FERN_TOKEN }}
0 commit comments