29.0.0 #77
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload Package | |
on: | |
release: | |
types: [published] | |
jobs: | |
build-and-publish-python-package: | |
name: Build Python package with sources and publish | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Build and publish to PyPi | |
uses: JRubics/[email protected] | |
with: | |
pypi_token: ${{ secrets.PYPI_TOKEN }} |