--- a +++ b/.github/workflows/deployment.yml @@ -0,0 +1,30 @@ +name: Deployment +on: + push: + tags: [v*] + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Python 3.10 + uses: actions/setup-python@v4 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install tox + + - name: Build package + run: tox -e build-package + + - name: Publish package + uses: pypa/gh-action-pypi-publish@release/v1 + with: + password: ${{ secrets.TWINE_API_KEY }} + skip-existing: true + verify-metadata: true + verbose: true