secsie-conf v3.1.3 #11
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: PyPi Deployment | |
on: | |
release: | |
types: [published] | |
jobs: | |
deploy: | |
name: Deploy Package to PyPi | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install twine and wheel | |
run: python -m pip install twine wheel | |
- name: Build package | |
run: python setup.py sdist bdist_wheel | |
- name: Upload to PyPi | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
run: twine upload dist/* |