Skip to content

Fix CI and release workflows #5

Fix CI and release workflows

Fix CI and release workflows #5

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "v*"
- "!v*-launcher"
permissions:
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.12
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
cache-dependency-path: editor/package-lock.json
- name: Build editor
working-directory: editor
run: |
npm ci
npm run build
- name: Verify packaged editor build
run: |
test -f src/codaro/webBuild/index.html
test -d src/codaro/webBuild/_app
- name: Run tests
run: uv run --extra dev pytest tests/ -v --tb=short
- name: Build wheel
run: uv build
- name: Upload dist artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
publish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download dist
uses: actions/download-artifact@v4
with:
name: dist
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1