Skip to content

feat: v0.2.0 — persistent named sandboxes, background jobs, run_code,… #2

feat: v0.2.0 — persistent named sandboxes, background jobs, run_code,…

feat: v0.2.0 — persistent named sandboxes, background jobs, run_code,… #2

Workflow file for this run

name: Release
on:
push:
tags: ["v*"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: python -m pip install build
- run: python -m build
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
publish:
needs: build
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
name: dist
path: dist/
- uses: pypa/gh-action-pypi-publish@release/v1