Merge pull request #201 from natekspencer/dev #11
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
# An action to build and publish python package to https://pypi.org/ using poetry https://github.com/sdispater/poetry | |
# For more information see: https://github.com/marketplace/actions/publish-python-poetry-package | |
name: Publish python package | |
on: | |
push: | |
tags: | |
- "v?*.*.*" | |
permissions: | |
contents: read | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and publish to pypi | |
uses: JRubics/[email protected] | |
with: | |
pypi_token: ${{ secrets.PYPI_TOKEN }} | |
plugins: "poetry-dynamic-versioning[plugin]" |