Skip to content

Publish PyPI Package #40

Publish PyPI Package

Publish PyPI Package #40

Workflow file for this run

# Workflow for publishing module package to https://pypi.org.
name: Publish PyPI Package
on:
# trigger this workflow when a release is published.
release:
types:
- published
jobs:
publish:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE , so your workflow can access it.
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Run build to a specified version of python into a specified directory.
- name: Python Build
run: python3 -m pip install --upgrade build && python3 -m build
# Publish the python package to pypi.org.
- name: Publish Package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1