Merge pull request #151 from bretterer/bump-bleak #40
Workflow file for this run
This file contains hidden or 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 | |
| # This workflow uses actions that are not certified by GitHub. | |
| # They are provided by a third-party and are governed by | |
| # separate terms of service, privacy policy, and support | |
| # documentation. | |
| name: Upload Python Package | |
| on: | |
| push: | |
| tags: | |
| - "v?*.*.*" | |
| permissions: | |
| contents: read | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build and publish to pypi | |
| uses: JRubics/poetry-publish@v1.16 | |
| with: | |
| pypi_token: ${{ secrets.PYPI_API_TOKEN }} | |
| plugins: "poetry-dynamic-versioning[plugin]" |