Skip to content

Added: support for the secondary email addresses (v1) API #4

Added: support for the secondary email addresses (v1) API

Added: support for the secondary email addresses (v1) API #4

Workflow file for this run

---
name: Upload Python Package
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USER }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*