We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60f73b1 commit b2a1c61Copy full SHA for b2a1c61
1 file changed
.github/workflows/upload-docs.yml
@@ -42,6 +42,17 @@ jobs:
42
- name: Build docs
43
run: make site
44
45
+ - name: Set up NodeJS
46
+ uses: actions/setup-node@v2
47
+ with:
48
+ node-version: 16
49
+
50
+ - name: Generate API docs
51
+ run: make apidoc-init apidoc
52
53
+ - name: Copy API docs to docs/ dir
54
+ run: cp -r apidoc/_output/ docs/_build/html/docs/api
55
56
- name: Deploy
57
uses: peaceiris/actions-gh-pages@v3
58
with:
0 commit comments