Skip to content

fix: use codebase-mentor marketplace ID for Claude plugin registry #4

fix: use codebase-mentor marketplace ID for Claude plugin registry

fix: use codebase-mentor marketplace ID for Claude plugin registry #4

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
permissions:
id-token: write
contents: read
jobs:
publish:
runs-on: ubuntu-latest
environment: pypi
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Build package
run: |
pip install build
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1