diff options
-rw-r--r-- | .github/workflows/docs.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..6b78a71 --- /dev/null +++ b/.github/workflows/docs.yml | |||
@@ -0,0 +1,15 @@ | |||
1 | name: docs | ||
2 | on: | ||
3 | push: | ||
4 | branches: | ||
5 | - main | ||
6 | jobs: | ||
7 | deploy: | ||
8 | runs-on: ubuntu-latest | ||
9 | steps: | ||
10 | - uses: actions/checkout@v2 | ||
11 | - uses: actions/setup-python@v2 | ||
12 | with: | ||
13 | python-version: 3.x | ||
14 | - run: pip install mkdocs-material | ||
15 | - run: mkdocs gh-deploy --force | ||