From 785e5c263dbf0026aec1eafb9421812c1ff0eb8b Mon Sep 17 00:00:00 2001 From: Chase Granberry Date: Thu, 19 Oct 2023 12:57:08 -0700 Subject: [PATCH] docs: auto publish docs on main (#189) --- .github/workflows/docs.yml | 15 +++++++++++++++ VERSION | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 00000000..db961517 --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,15 @@ +name: Publish docs +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 diff --git a/VERSION b/VERSION index 5d11b147..f806549d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.15 +0.9.16