imp - brk|doc - Moved SHA384 to its own addon #3738
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: KS API Documentation | |
on: | |
push: | |
branches: | |
- main | |
- servicing | |
pull_request: | |
branches: | |
- main | |
- servicing | |
jobs: | |
build: | |
name: "Make API Reference" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Fetching the KS source | |
- uses: "nunit/docfx-action@master" | |
name: Generating documentation | |
with: | |
args: DocGen/docfx.json | |
- name: Saving changes to gh-pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
commit_message: "Updated documentation to reflect latest changes" | |
personal_token: ${{ secrets.DOCGEN_TOKEN }} | |
publish_dir: ./docs/ | |
publish_branch: gh-pages |