Release PyPi Version #3
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: Manual Release | |
on: | |
workflow_dispatch: # This event allows manual triggering | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
env: | |
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11.x | |
- name: Install twine and wheel | |
run: pip install twine wheel | |
- name: Make Full | |
run: make full | |
- name: Upload to PyPI | |
run: python3 setup.py upload |