-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (33 loc) · 907 Bytes
/
publish.yml
File metadata and controls
42 lines (33 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Release on GitHub and publish to PyPI
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+*
jobs:
release_and_publish:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
permissions:
id-token: write
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install hatch hatch-jupyter-builder
- name: Build the widget JS
run: |
npm ci
npm run build:widget
- name: Build Python package
run: hatch build
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist/