-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from babeloff/main
On Writing Documentation
- Loading branch information
Showing
88 changed files
with
4,329 additions
and
3,570 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,32 @@ | ||
name: Build and Publish Docs | ||
# https://squidfunk.github.io/mkdocs-material/publishing-your-site/#github-pages | ||
|
||
name: Build and Publish User Docs | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
- mkdocs | ||
permissions: | ||
contents: write | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
# - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
# - uses: actions/cache@v3 | ||
# # https://github.com/actions/cache | ||
# with: | ||
# key: mkdocs-material-${{ env.cache_id }} | ||
# path: .cache | ||
# restore-keys: | | ||
# mkdocs-material- | ||
- run: >- | ||
pip install mkdocs-material mkdocs-awesome-pages-plugin | ||
mkdocs-section-index mkdocs-toc-sidebar-plugin mike | ||
markdown-include mkdocs-pdf-export-plugin | ||
# https://www.mkdocs.org/user-guide/cli/#mkdocs-gh-deploy | ||
- run: cd docs && mkdocs gh-deploy --force |
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
nav: | ||
- REST_API_Doc.md | ||
- REST_API_InternalDoc.md | ||
- REST API: | ||
- External API: REST_API_Doc.md | ||
- Internal API: REST_API_InternalDoc.md |
Oops, something went wrong.