Skip to content

Bump notebook from 6.4.11 to 7.0.0 #193

Bump notebook from 6.4.11 to 7.0.0

Bump notebook from 6.4.11 to 7.0.0 #193

Workflow file for this run

name: Build and upload to PyPI
on:
release:
types: [ published ]
pull_request:
branches: [ main ]
jobs:
build_dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Save artifacts
uses: actions/upload-artifact@v3
with:
name: clkhash-dist
path: ./dist
upload_pypi:
needs: [build_dist]
runs-on: ubuntu-latest
# upload to PyPI only on release
if: github.event.release && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v3
with:
name: clkhash-dist
path: dist
- uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}