Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/mkdocs/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
INHERIT: mkdocs-default.yml
# nav:
# - index.md
# - Example.md
# - About: about/index.md
17 changes: 17 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Deploy docs

on: # yamllint disable-line rule:truthy
push:
branches:
- master
tags:
- v*

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: SciCatProject/docs-template/.github/actions/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
push: true
Loading