Skip to content

update schema, deep breath, prepare to do KSIs later #96

update schema, deep breath, prepare to do KSIs later

update schema, deep breath, prepare to do KSIs later #96

Workflow file for this run

name: Documentation
on:
push:
branches:
- develop
- main
- 'pwx-**'
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/configure-pages@v5
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install Bun dependencies
run: bun install
working-directory: tools
- run: pip install zensical mkdocs-ultralytics-plugin
- name: Run Bun build
run: bun run build
working-directory: tools
- uses: actions/upload-pages-artifact@v4
with:
path: tools/site/static/html/
- uses: actions/deploy-pages@v4