Files
beads/.github/workflows/test-pypi.yml
Salman Chishti 0cf19d438a Upgrade GitHub Actions for Node 24 compatibility (#1307)
Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com>
2026-01-24 17:10:36 -08:00

35 lines
848 B
YAML

name: Test PyPI Publish
on:
workflow_dispatch: # Manual trigger only
jobs:
test-publish:
# Guard: only allow test PyPI publish runs in the canonical repository
if: ${{ github.repository == 'steveyegge/beads' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install uv
run: pip install uv
- name: Build package
run: |
cd integrations/beads-mcp
uv build
- name: Publish to TestPyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
run: |
cd integrations/beads-mcp
uv tool run twine upload --repository testpypi dist/*