From ef55eaf4257d97228cdd73d2c216274576c15a95 Mon Sep 17 00:00:00 2001 From: Daniel Thaler Date: Mon, 18 Sep 2023 22:37:14 +0200 Subject: [PATCH] add a github action to automatically deploy the documentation --- .github/workflows/Pages.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/Pages.yml diff --git a/.github/workflows/Pages.yml b/.github/workflows/Pages.yml new file mode 100644 index 0000000..d26d2bb --- /dev/null +++ b/.github/workflows/Pages.yml @@ -0,0 +1,15 @@ +name: Deploy API Docs to Github Pages +on: + push: + branches: + - main +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.x + - run: pip install mkdocs + - run: mkdocs gh-deploy --force --clean --verbose