Version Increment #4
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: Publish Python package to PyPI | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
publish: | |
name: Publish to PyPI | |
runs-on: ubuntu-latest | |
if: false && startsWith(github.ref, 'refs/tags/') # Only run on tagged commits | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # This fetches all history for all branches and tags | |
- name: Verify tag is on master branch | |
run: | | |
TAG_IS_ON_MASTER=$(git branch -r --contains ${{ github.ref }} | grep 'origin/master') | |
if [ -z "$TAG_IS_ON_MASTER" ]; then | |
echo "Tag is not on the master branch. Cancelling the workflow." | |
exit 1 | |
fi | |
echo "Tag is on the master branch. Proceeding with the workflow." | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Install pypa/build/setuptools/twine | |
run: >- | |
python3 -m | |
pip install | |
build setuptools twine | |
--user | |
- name: Prevent fallback onto setup.py | |
run: rm setup.py | |
- name: Build a binary wheel and a source tarball | |
run: python3 -m build | |
- name: Publish to PyPI | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
run: twine upload dist/* | |