Skip to content

ci(pre-commit): auto fixes from pre-commit hooks #80

ci(pre-commit): auto fixes from pre-commit hooks

ci(pre-commit): auto fixes from pre-commit hooks #80

Workflow file for this run

name: Docs
on:
push:
jobs:
docs:
name: Docs
permissions:
contents: write
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pixi
uses: prefix-dev/setup-pixi@v0
with:
environments: cpu
activate-environment: true
- name: Build
run: mkdocs build
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: docs
path: site
- if: github.ref == 'refs/heads/main'
name: Deploy
run: mkdocs gh-deploy --force --no-history