Skip to content

chore: bump to v1.6.0 #12

chore: bump to v1.6.0

chore: bump to v1.6.0 #12

Workflow file for this run

name: Publish docs to GitHub Pages
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: https://${{ github.repository_owner }}.github.io/primerdriver
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install "poetry==1.8.3"
poetry install --no-root --with dev
- name: Publish docs
run: poetry run mkdocs gh-deploy --force