Benchmark multiple routes (#155) #28
This file contains hidden or 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: Release Documentation | |
permissions: | |
contents: write | |
on: | |
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@v5 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.50.2 | |
locked: true | |
cache: false | |
environments: dev | |
- name: Build Docs | |
run: pixi run -e dev make-html | |
- name: deploy | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: ./docs/_build/html | |
# destination_dir: docs | |
# force_orphan: true | |
keep_files: true | |
full_commit_message: "${{ github.event.head_commit.message != '' && github.event.head_commit.message || format('Update docs: {0}', github.sha) }}" |