Skip to content

Updates readme for clearer installation procedure (#4) #22

Updates readme for clearer installation procedure (#4)

Updates readme for clearer installation procedure (#4) #22

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install build dependencies
run: python -m pip install --upgrade pip setuptools wheel build
- name: Build the source and binary distributions
run: python -m build
- name: Publish a Python distribution to PyPI
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}