Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Update README.md

Update README.md #23

Workflow file for this run

name: Publish Python 🐍 distribution 📦 to PyPI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Configure Git identity
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine bump2version
- name: Bump version
run: |
bump2version patch --config-file .github/.bumpversion.cfg
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload --verbose dist/*
- name: Update version and tag
run: |
git push --tags
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}