Skip to content

v1.3.0

v1.3.0 #11

Workflow file for this run

name: Upload Python Package
on:
workflow_dispatch:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
#- uses: ./.github/workflows/unit.yaml
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: pip install twine build nox
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python -m build
twine upload dist/*