Skip to content

CLN: Clearer return typing in _run_in_notebook #2

CLN: Clearer return typing in _run_in_notebook

CLN: Clearer return typing in _run_in_notebook #2

Workflow file for this run

name: Release
on:
release:
types:
- published
jobs:
pypi-publish:

Check failure on line 8 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

You have an error in your yaml syntax on line 8
name: Deploy release to PyPI
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
environment:
name: pypi
url: https://pypi.org/p/mitosis
permissions:
id-token: write
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install Build
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build .
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1.8.11