Dropping black, flake8 and isort in favor of ruff #693
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
# Upload a Python Package using Twine when a release is created | |
# adapted from mne-bids-pipeline | |
name: Build | |
on: | |
release: | |
types: [published] | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade twine wheel setuptools setuptools_scm | |
- name: Build package | |
run: python setup.py sdist bdist_wheel | |
- name: Check package | |
run: twine check --strict dist/* | |
- name: Check env vars | |
run: | | |
echo "Triggered by: ${{ github.event_name }}" | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
# PyPI on release | |
pypi: | |
needs: package | |
runs-on: ubuntu-latest | |
if: github.event_name == 'release' | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |