Skip to content

Publish Python 🐍 package #10

Publish Python 🐍 package

Publish Python 🐍 package #10

Workflow file for this run

name: Publish Python 🐍 package
on:
push:
tags:
- 'v*'
jobs:
build-n-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: "3.7"
- name: Build distribution
run: |
pip install setuptools_scm wheel
python3 setup.py sdist bdist
- name: Publish distribution 📦 to PyPI
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}
- name: Publish distribution 📦 to Test PyPI
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/