Bump version to 1!0.1.0a10
#12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy docs | |
on: | |
push: | |
branches: main | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install Nox | |
run: pip install nox | |
- name: Run pdoc | |
timeout-minutes: 1 | |
run: nox --session pdoc -- --output-directory _site | |
- name: Upload Pages artifact | |
uses: actions/upload-pages-artifact@v3 | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deploy-pages.outputs.page_url }} | |
steps: | |
- id: deploy-pages | |
uses: actions/deploy-pages@v4 |