Skip to content

Proof of Concept - CLI #15

Proof of Concept - CLI

Proof of Concept - CLI #15

Workflow file for this run

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_dir: ./docs/_build/html
force_orphan: true
full_commit_message: "${{ github.event.head_commit.message != '' && github.event.head_commit.message || format('Update docs: {0}', github.sha) }}"