README: shorten #93
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: PyPI | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'version.py' | |
jobs: | |
pypi: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
- name: Build and publish | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.pypi_token }} | |
run: | | |
python setup.py sdist bdist_wheel | |
twine upload dist/* --skip-existing | |
- name: Tag | |
run: | | |
TAG=$(python -c 'from version import __version__; print(__version__)' | sed 's/^/v/') | |
git config --global user.name 'github-actions' | |
git config --global user.email '[email protected]' | |
git tag -a $TAG -m"Release $TAG" | |
git push origin $TAG --force |