From 66d111c983e81d0aeaedc432f159de4ff355ddb1 Mon Sep 17 00:00:00 2001 From: Gavin Macaulay Date: Thu, 15 Aug 2024 13:49:52 +1200 Subject: [PATCH] Add github action to build the documentation (#12) --- workflows/build-docs.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 workflows/build-docs.yml diff --git a/workflows/build-docs.yml b/workflows/build-docs.yml new file mode 100644 index 0000000..7847ece --- /dev/null +++ b/workflows/build-docs.yml @@ -0,0 +1,19 @@ +name: build-docs +on: + push: + branches: + - master + - main +permissions: + contents: write +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[python] + - run: mkdocs gh-deploy --force --clean --verbose +