diff --git a/bsuite/opensource/github/workflows/release.yml b/bsuite/opensource/github/workflows/release.yml new file mode 100644 index 0000000..a47c332 --- /dev/null +++ b/bsuite/opensource/github/workflows/release.yml @@ -0,0 +1,25 @@ +name: pypi + +on: + release: + types: [created] + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v1 + with: + python-version: '3.x' + - name: Install dependencies + run: | + pip install --upgrade pip setuptools twine + - name: Build and publish + env: + TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} + TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + run: | + python setup.py sdist + twine upload dist/*