From 7bb53d616beaa2aef6f7b30e03946e3e682704d7 Mon Sep 17 00:00:00 2001 From: Fischer Moseley <42497969+fischermoseley@users.noreply.github.com> Date: Thu, 9 Mar 2023 16:26:45 -0500 Subject: [PATCH] build docs --- .github/workflows/build_docs | 22 ++++++++++++++++++++++ mkdocs.yml | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 .github/workflows/build_docs create mode 100644 mkdocs.yml diff --git a/.github/workflows/build_docs b/.github/workflows/build_docs new file mode 100644 index 0000000..915007b --- /dev/null +++ b/.github/workflows/build_docs @@ -0,0 +1,22 @@ +name: build_docs +on: + push: + branches: + - main + - rearch +permissions: + contents: write +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - uses: actions/cache@v2 + with: + key: ${{ github.ref }} + path: .cache + - run: pip install mkdocs-material + - run: mkdocs gh-deploy --force diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..38d3d16 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,2 @@ +theme: + name: material \ No newline at end of file