Skip to content

secsie-conf v3.1.3

secsie-conf v3.1.3 #11

Workflow file for this run

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/*