Skip to content

v0.4.4

v0.4.4 #12

Workflow file for this run

name: Release
on:
release:
types:
- created
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: build frontend
run: |
npm install -g bun
cd app && bun install && bun vite build && cd ..
- name: Publish
env:
PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
run: |
uv build
uv publish --token $PYPI_TOKEN