Skip to content

ci: remove branch filter from push event to trigger CI on all branches #53

ci: remove branch filter from push event to trigger CI on all branches

ci: remove branch filter from push event to trigger CI on all branches #53

name: Publish 📦 to PyPI test server 🐍
on: push
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- uses: astral-sh/setup-uv@v5
- name: Build package
run: uv build
- name: Publish package
env:
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TEST_TOKEN }}
run: uv publish --publish-url https://test.pypi.org/legacy/ --check-url https://test.pypi.org/simple/ --trusted-publishing never