-
Notifications
You must be signed in to change notification settings - Fork 33
61 lines (49 loc) · 1.21 KB
/
release.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Release
# Only run on new tags starting with `v`
on:
push:
tags:
- 'v*'
jobs:
build:
name: Build dist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.11'
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install JS dependencies
run: |
npm install
- name: Build JS bundle
run: |
npm run build
- name: Build dist
run: |
python -m pip install -U build
python -m build
- name: Ensure JS files included
run: |
# If no files with path lonboard/static, fail
unzip -l dist/*.whl | grep "lonboard/static" || exit 1
- uses: actions/upload-artifact@v3
with:
path: ./dist/
upload_pypi:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
# To test: repository_url: https://test.pypi.org/legacy/