Skip to content

Prepare v0.9.1 release #49

Prepare v0.9.1 release

Prepare v0.9.1 release #49

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
style:
name: Check style
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- uses: pre-commit/[email protected]
build:
needs: style
name: Build package
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build sdist and wheel
run: |
pip install build
python -m build
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist
upload-pypi:
name: Upload to PyPI
needs: build
runs-on: ubuntu-22.04
environment:

Check failure on line 40 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 40
name: pypi
url: https://pypi.org/p/mnelab
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
- uses: pypa/[email protected]