Skip to content

Merge pull request #66 from trubrics/v1.4.0 #56

Merge pull request #66 from trubrics/v1.4.0

Merge pull request #66 from trubrics/v1.4.0 #56

Workflow file for this run

name: Release package
on:
push:
tags:
- v*
jobs:
build-and-publish:
name: Build and publish Python dist to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Extract release notes
id: extract-release-notes
uses: ffurrer2/extract-release-notes@v1
- name: Create github release
if: startsWith(github.ref, 'refs/tags')
uses: softprops/action-gh-release@v1
with:
body: ${{ steps.extract-release-notes.outputs.release_notes }}
files: dist/*.whl
- name: Set up Python 3.9
uses: actions/setup-python@v3
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 distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}