Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish to pypi | |
on: | |
release: | |
types: [published] | |
jobs: | |
# Push a new release to PyPI | |
deploy_to_pypi: | |
name: Publish to PyPI | |
runs-on: ubuntu-latest | |
if: github.actor != 'mindsdbadmin' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ vars.CI_PYTHON_VERSION }} | |
- name: Install dependencies | |
run: | | |
pip install setuptools wheel twine | |
- name: Clean previous builds | |
run: rm -rf dist/ build/ *.egg-info | |
- name: Build and publish | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
# This uses the version string from __about__.py, which we checked matches the git tag above | |
python setup.py sdist | |
twine upload dist/* |