2021-09-26 17:56:40 +00:00
|
|
|
name: Publish packages
|
|
|
|
on:
|
2022-01-14 15:32:48 +00:00
|
|
|
release:
|
|
|
|
types: [published]
|
2021-09-26 17:56:40 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-n-publish:
|
|
|
|
name: Build release packages
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Setup python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
|
|
|
|
- name: Install pypa/build
|
|
|
|
run: >-
|
|
|
|
python -m
|
|
|
|
pip install
|
|
|
|
build
|
|
|
|
--user
|
|
|
|
- name: Build a binary wheel and a source tarball
|
|
|
|
run: >-
|
|
|
|
python -m
|
|
|
|
build
|
|
|
|
--sdist
|
|
|
|
--wheel
|
|
|
|
--outdir dist/
|
|
|
|
.
|
|
|
|
- name: Publish release on pypi
|
|
|
|
uses: pypa/gh-action-pypi-publish@master
|
|
|
|
with:
|
|
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|