Skip to content

Publish

Publish #10

Workflow file for this run

name: Publish
on: [workflow_dispatch]
jobs:
Publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: |
python3 -m pip install --upgrade build
python3 -m build
- name: Publish
run: |
python3 -m pip install --upgrade twine
python3 -m twine upload dist/* -u uid2 -p "${{ secrets.PYPI_PASSWORD }}"