version: bump version number. #258
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: PyPI | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
- 'docsrc/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Publish GH release | |
uses: softprops/action-gh-release@v0.1.14 | |
- name: Build using poetry and publish to PyPi | |
uses: JRubics/poetry-publish@v1.11 | |
with: | |
pypi_token: ${{ secrets.PYPI_API_KEY }} |