Skip to content

Show subagent sessions and bump version #3

Show subagent sessions and bump version

Show subagent sessions and bump version #3

Workflow file for this run

name: Publish to PyPI
on:
release:
types: [published]
push:
tags:
- "v*"
workflow_dispatch:
permissions:
contents: read
id-token: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Build distributions
run: |
python -m pip install --upgrade build
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1