separated build #6
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: Upload Python Package | |
on: | |
push: | |
branches: | |
- issue-160 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python3 -m venv venv | |
. venv/bin/activate | |
pip install setuptools wheel twine | |
pip install -r requirements.txt | |
- name: run tests | |
env: | |
RETRY_ATTEMPTS: 1 | |
run: | | |
python -m pip install --upgrade pip | |
python3 -m venv venv | |
. venv/bin/activate | |
pip install -r requirements.txt | |
pip install nose2 | |
nose2 | |
- name: Build and publish | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USER }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
python setup.py bdist_wheel --universal | |
twine upload dist/* |