From 4e3488524b38e1c8a1cf31555be76ac752e2f52e Mon Sep 17 00:00:00 2001 From: Joshua Powers Date: Mon, 18 Jan 2021 15:43:26 -0800 Subject: [PATCH] Create docs-publish-to-github.yml --- .github/workflows/docs-publish-to-github.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/docs-publish-to-github.yml diff --git a/.github/workflows/docs-publish-to-github.yml b/.github/workflows/docs-publish-to-github.yml new file mode 100644 index 0000000..41386fe --- /dev/null +++ b/.github/workflows/docs-publish-to-github.yml @@ -0,0 +1,15 @@ +name: docs-publish-to-github +on: + push: + branches: + - master +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.8 + - run: pip install mkdocs-material + - run: mkdocs gh-deploy --force