Skip to content

v0.1.71 fixes bug in #16 #78

v0.1.71 fixes bug in #16

v0.1.71 fixes bug in #16 #78

Workflow file for this run

# ✍️ Description:
# This workflow will be triggered automatically when a tag is pushed to the repo.
# It will create a create a new pip package to release it to pypi with the version specificed by the git tag.
# 🚨 GTHUB SECRETS REQUIRED: secrets.PYPI_TOKEN
# - Used to publish the package to the pypi
name: Publish to Package to PyPi
on:
push:
# only release a new pip package if the commit it tagged ex.v1.0.3 or v1.2.0dev1
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+a[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+b[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+rc[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+dev[0-9]+"
workflow_dispatch:
jobs:
build:
name: Build and deploy to PyPI
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: "1"
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- 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 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
password: ${{ secrets.PYPI_TOKEN }}