Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 18 additions & 19 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,25 +74,24 @@ jobs:
--ignore-unfixed \
${{ env.DOCKER_IMAGE }}:${{ steps.version.outputs.VERSION }}

# PyPI publish — uncomment PYPI_API_TOKEN secret when ready
# pypi-publish:
# name: PyPI Publish
# needs: test
# runs-on: ubuntu-latest
# environment: release
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# with:
# python-version: "3.13"
# - run: pip install --upgrade pip build twine
# - name: Build package
# run: python -m build
# - name: Publish to PyPI
# env:
# TWINE_USERNAME: __token__
# TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
# run: python -m twine upload dist/*
pypi-publish:
name: PyPI Publish
needs: test
runs-on: ubuntu-latest
environment: release
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- run: pip install --upgrade pip build twine
- name: Build package
run: python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: python -m twine upload dist/*

github-release:
name: GitHub Release
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ build/
.eggs/
*.egg

marketing/
# Virtual environments
.venv/
venv/
Expand Down
Loading
Loading