4.0.0 #10
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: Release | |
on: | |
release: | |
types: [released] | |
jobs: | |
package_release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Install Python dependencies | |
run: python -m pip install -U pip setuptools wheel twine | |
- name: install poetry and poetry-dynamic-versioning | |
run: python -m pip install -U poetry poetry-dynamic-versioning | |
- name: building package | |
run: poetry build | |
- name: Upload packages | |
run: "python -m twine upload dist/*" | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.pypi_token }} |