Update pedalboard requirement from <=0.3.6 to <=0.7.8 #153
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: Python CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
release: | |
types: [created] | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- if: ${{ github.event_name == 'release' }} | |
name: Publish Release to PyPi | |
uses: dciborow/pyaction@0.0.28 | |
with: | |
pypi_publish: true | |
pypi_password: ${{ secrets.PYPI_PASSWORD }} | |
- if: ${{ github.event_name == 'push' }} | |
name: Publish RC to PyPi | |
uses: dciborow/pyaction@0.0.28 | |
with: | |
pypi_publish: true | |
pypi_password: ${{ secrets.PYPI_PASSWORD }} | |
version_suffix: -rc${{ github.run_number }}-post${{ github.run_attempt }} | |
- if: ${{ github.event_name == 'pull_request' }} | |
name: Publish Snapshot to TestPyPi | |
uses: dciborow/pyaction@0.0.28 | |
with: | |
pypi_publish: true | |
pypi_password: ${{ secrets.TEST_PYPI_PASSWORD }} | |
pypi_repo: testpypi | |
version_suffix: -post${{ github.run_number }}-dev${{ github.run_attempt }} |