From 52ea5203ad9debd4723bb437aad4c0fe934333fb Mon Sep 17 00:00:00 2001 From: Paul Friederichsen Date: Tue, 15 Feb 2022 05:10:55 -0600 Subject: [PATCH] Add GitHub Pages docs publishing GH Actions workflow --- .github/workflows/publish_docs.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/publish_docs.yml diff --git a/.github/workflows/publish_docs.yml b/.github/workflows/publish_docs.yml new file mode 100644 index 00000000..472e17ad --- /dev/null +++ b/.github/workflows/publish_docs.yml @@ -0,0 +1,16 @@ +name: Publish Docs +on: + push: + branches: + - master + +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-material + - run: mkdocs gh-deploy --force \ No newline at end of file