Skip to content

Feat: Add models + sandbox file/exec/library routes (33/33 with prod)… #5

Feat: Add models + sandbox file/exec/library routes (33/33 with prod)…

Feat: Add models + sandbox file/exec/library routes (33/33 with prod)… #5

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "v*"
permissions:
contents: read
id-token: write
jobs:
publish:
runs-on: ubuntu-latest
environment: pypi
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install build tools
run: pip install build
- name: Build
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1