Skip to content

Commit e2b1251

Browse files
committed
First commit
0 parents  commit e2b1251

File tree

38 files changed

+15498
-0
lines changed

38 files changed

+15498
-0
lines changed

.eslintrc.js

Whitespace-only changes.

.github/workflows/publish.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Publish
2+
on:
3+
push:
4+
tags:
5+
- '*'
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- uses: actions/setup-python@v5
13+
with:
14+
python-version: 3.12
15+
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: 22
19+
20+
- run: |
21+
pip install hatch
22+
cd projects/jupyter-server-signaling; hatch build ../../dist; cd ../..
23+
cd projects/jupyter-shared-docprovider; hatch build ../../dist; cd ../..
24+
cd projects/jupyter-shared-drive; hatch build ../../dist; cd ../..
25+
cd projects/jupyter-shared-drive-ui; hatch build ../../dist; cd ../..
26+
- uses: actions/upload-artifact@v4
27+
with:
28+
path: ./dist
29+
30+
pypi-publish:
31+
needs: ['build']
32+
environment: 'publish'
33+
34+
name: Upload release to PyPI
35+
runs-on: ubuntu-latest
36+
steps:
37+
- uses: actions/download-artifact@v4
38+
39+
- name: Publish package to PyPI
40+
uses: pypa/gh-action-pypi-publish@release/v1
41+
with:
42+
password: ${{ secrets.PYPI_TOKEN }}
43+
packages_dir: artifact/

.prettierignore

Whitespace-only changes.

.prettierrc

Whitespace-only changes.

.stylelintrc

Whitespace-only changes.

.yarnrc.yml

Whitespace-only changes.

LICENSE

Whitespace-only changes.

README.md

Whitespace-only changes.

install.json

Whitespace-only changes.

lerna.json

Whitespace-only changes.

0 commit comments

Comments
 (0)