Merge pull request #18 from SpikeInterface/add-firing-rate #19
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 spikeinterface_pipelines Pyton package | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- src/spikeinterface_pipelines/** | |
- pyproject.toml | |
jobs: | |
pypi-release: | |
name: PyPI release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.8" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
pip install twine | |
- name: Build and publish to PyPI | |
run: | | |
python -m build | |
twine upload dist/* | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} |