Skip to content

Bump release-drafter/release-drafter from 7.4.0 to 7.5.1 #113

Bump release-drafter/release-drafter from 7.4.0 to 7.5.1

Bump release-drafter/release-drafter from 7.4.0 to 7.5.1 #113

Workflow file for this run

name: Release Documentation
permissions: write-all
on:
pull_request:
push:
branches: [main]
release:
types: [created, published]
workflow_dispatch:
jobs:
build_docs:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Pull Repo
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
with:
fetch-depth: 0
fetch-tags: true
persist-credentials: false
- uses: prefix-dev/setup-pixi@5185adfbffb4bd703da3010310260805d89ebb11
with:
pixi-version: v0.62.2
locked: true
cache: false # Don't use cache because we use the ``doc`` environment
environments: doc
- name: Build Docs
run: pixi run -e doc python-docs # This errors on warnings
- name: deploy
uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453
if: startsWith(github.ref, 'refs/tags/v')
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
force_orphan: true
full_commit_message: ${{ github.event.head_commit.message }}