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

v0.16.2

v0.16.2 #2

Workflow file for this run

name: Publish
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.x
architecture: x64
- name: Install setuptools
run: python -m pip install setuptools
- name: Build a source distribution
run: python setup.py sdist
- name: Publish to prod PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}