Skip to content

Merge pull request #40 from softnanolab/dev-v0.7.0 #21

Merge pull request #40 from softnanolab/dev-v0.7.0

Merge pull request #40 from softnanolab/dev-v0.7.0 #21

Workflow file for this run

# Builds using pip and tests using pytest
name: Deploy
on:
push:
tags: v*.*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build Wheel
run: python setup.py sdist bdist_wheel
- name: Deploy
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}