Skip to content

Shape check fix and tests fix with version updates #64

Shape check fix and tests fix with version updates

Shape check fix and tests fix with version updates #64

Workflow file for this run

name: Build and upload to PyPI
on: [push, pull_request]
jobs:
build_sdist_and_wheel:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.9'
- name: Install build
run: python -m pip install build
- name: Build sdist
run: python -m build --sdist --wheel --outdir dist/ .
- uses: actions/upload-artifact@v2
with:
path: dist/*
upload_pypi:
name: Upload to PyPI
needs: [build_sdist_and_wheel]
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v2
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}