Skip to content

Publish Python Package #15

Publish Python Package

Publish Python Package #15

Workflow file for this run

name: Publish Python Package
on:
release:
types: [published]
jobs:
release:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install build tools
run: |
python -m pip install --upgrade pip
python -m pip install build twine
- name: Build package
run: |
python -m build --wheel --outdir dist
- name: Publish to PyPI
run: |
python -m pip install twine
python -m twine upload dist/*.whl --verbose
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
- name: Test installation (optional)
run: |
pip install dist/*.whl
python -c "import bigo"