From c8c780aad36ada8f411de53af32d8adc344bddc8 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 12 Jan 2026 14:33:49 +0000 Subject: [PATCH 1/3] First pass deployment --- .github/workflows/docs.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..5c55d26 --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,30 @@ +name: Documentation +on: + push: + branches: + - master + - main +permissions: + contents: read + pages: write + id-token: write +jobs: + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - uses: actions/configure-pages@v5 + - uses: actions/checkout@v5 + - uses: actions/setup-python@v5 + with: + python-version: 3.x + - run: pip install -e . + - run: mkdocs --help + - run: mkdocs build + - uses: actions/upload-pages-artifact@v4 + with: + path: site + - uses: actions/deploy-pages@v4 + id: deployment From 62e66cd2a9d40bbe6763ea8f1e46b182513ec4cf Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 12 Jan 2026 14:39:24 +0000 Subject: [PATCH 2/3] Initially... Output, without deploy --- .github/workflows/docs.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5c55d26..bac6ff8 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,8 +2,9 @@ name: Documentation on: push: branches: - - master - main + pull_request: + branches: ['main'] permissions: contents: read pages: write @@ -22,9 +23,9 @@ jobs: python-version: 3.x - run: pip install -e . - run: mkdocs --help - - run: mkdocs build - - uses: actions/upload-pages-artifact@v4 - with: - path: site - - uses: actions/deploy-pages@v4 - id: deployment + # - run: mkdocs build + # - uses: actions/upload-pages-artifact@v4 + # with: + # path: site + # - uses: actions/deploy-pages@v4 + # id: deployment From d1f8f1a71ca47c752e768363c036ecede834a309 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 12 Jan 2026 15:05:08 +0000 Subject: [PATCH 3/3] Nudge --- .github/workflows/docs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index bac6ff8..b964276 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,14 +1,17 @@ name: Documentation + on: push: branches: - main pull_request: branches: ['main'] + permissions: contents: read pages: write id-token: write + jobs: deploy: environment: