Skip to content

v1.0.0

v1.0.0 #78

Workflow file for this run

name: ci
on:
# We could deploy docs on every push.
# push:
# branches:
# - master
# - main
# But we only deploy with a release.
release:
types: [published]
env:
FORCE_COLOR: "1"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Ensure latest pip
run: python -m pip install --upgrade pip
- name: Install hatch
run: |
pip install hatch
- name: Publish on github.io
run: hatch run docs:ci-build