Skip to content

0.0.72b12

0.0.72b12 #57

Workflow file for this run

name: PyPi Release
# https://help.github.com/en/actions/reference/events-that-trigger-workflows
on:
# Only trigger on release creation
release:
types:
- created
workflow_dispatch:
# based on https://github.com/pypa/gh-action-pypi-publish
jobs:
build:
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build
run: >-
python setup.py sdist bdist_wheel
- name: Publish to PyPI
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@release/v1