-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix type refs in docs - Added missing networking section - Add GH workflow to publish docs
- Loading branch information
Showing
15 changed files
with
217 additions
and
179 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Publish docs via GitHub Pages | ||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
name: Deploy docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout main | ||
uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 'pypy3.9' | ||
- uses: actions/cache@v3 | ||
with: | ||
key: ${{ github.ref }} | ||
path: .cache | ||
- name: Deploy docs | ||
uses: afritzler/mkdocs-gh-pages-action@main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,15 +1,6 @@ | ||
# OnMetal API Documentation | ||
|
||
This page contains the documentation of the [onmetal-api](https://github.com/onmetal/onmetal-api) project which is part | ||
of the the [onmetal](https://github.com/onmetal) project. | ||
of the [onmetal](https://github.com/onmetal) project. | ||
|
||
``` mermaid | ||
graph LR | ||
A[Start] --> B{Error?}; | ||
B -->|Yes| C[Hmm...]; | ||
C --> D[Debug]; | ||
D --> B; | ||
B ---->|No| E[Yay!]; | ||
``` | ||
|
||
--8<-- "hack/docs/abbreviations.md" | ||
--8<-- "hack/docs/abbreviations.md" |
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
Oops, something went wrong.