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 dbbbc09 commit b7db9b3Copy full SHA for b7db9b3
.github/workflows/tagged_release.yaml
@@ -36,6 +36,14 @@ jobs:
36
- name: Run Docker E2E tests
37
if: ${{matrix.os == 'ubuntu-latest'}}
38
run: docker exec nut-ci bash -c "bash $PWD/.build/build.sh ${PWD} ${{matrix.node}}"
39
+ - name: Run typedoc
40
+ run: npm run typedoc
41
+ - name: Publish typedocs to GitHub Pages
42
+ uses: peaceiris/actions-gh-pages@v3.7.3
43
+ with:
44
+ deploy_key: ${{ secrets.API_DOC_DEPLOY_KEY }}
45
+ external_repository: nut-tree/apidoc
46
+ publish_dir: ./docs
47
48
deploy:
49
needs:
0 commit comments