Skip to content

v1.1.0 🌈

v1.1.0 🌈 #47

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: "Upload Python Package to PyPi"
on:
release:
types: ["published"]
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- name: "⤵️ Check out code from GitHub"
uses: "actions/checkout@v4"
- name: "🚀 Build package and publish to pypi"
uses: "JRubics/poetry-publish@v1.17"
with:
pypi_token: "${{ secrets.PYPI_PASSWORD }}"