-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92a3d31
commit 33b805f
Showing
76 changed files
with
610 additions
and
345 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,25 @@ | ||
name: GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- docs/** | ||
- mkdocs.yml | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: fkirc/skip-duplicate-actions@v5 | ||
with: | ||
cancel_others: 'true' | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # for the 'Last updated' timestamp | ||
- name: Install requirements | ||
run: pip install -r requirements.txt | ||
- name: Build and deploy site | ||
run: mkdocs gh-deploy --no-history |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
# .gitignore | ||
## Files we want to have locally, but do not want to push to remote | ||
|
||
## Editor swap files | ||
*~ | ||
*.swp | ||
*.orig | ||
|
||
## gitbook | ||
/_book/ | ||
## CMake build system | ||
**/build*/ | ||
|
||
## gitbook install | ||
/node_modules/ | ||
|
||
## gitbook-summary | ||
##/SUMMARY.md | ||
## MkDocs | ||
/site/ |
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 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
Binary file not shown.
File renamed without changes
Oops, something went wrong.