maintenance release #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish package to PyPI | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build_and_publish: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-versions: [ "3.9" ] | |
os: [ ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-versions }} | |
- uses: extractions/setup-just@v2 | |
- run: sudo apt-get install libsndfile1 | |
- run: just install-poetry | |
- run: poetry install | |
- run: just publish | |
env: | |
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }} |