File tree Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -27,19 +27,12 @@ jobs:
27
27
- name : setup frontend
28
28
uses : ./.github/actions/install-frontend-deps
29
29
30
- - name : create installer
31
- id : create_installer
32
- run : ./create_installer.sh
33
- working-directory : installer
30
+ - name : build wheel
31
+ id : build_wheel
32
+ run : ./scripts/build_wheel.sh
34
33
35
34
- name : upload python distribution artifact
36
35
uses : actions/upload-artifact@v4
37
36
with :
38
37
name : dist
39
- path : ${{ steps.create_installer.outputs.DIST_PATH }}
40
-
41
- - name : upload installer artifact
42
- uses : actions/upload-artifact@v4
43
- with :
44
- name : installer
45
- path : ${{ steps.create_installer.outputs.INSTALLER_PATH }}
38
+ path : ${{ steps.build_wheel.outputs.DIST_PATH }}
Original file line number Diff line number Diff line change 49
49
always_run : true
50
50
51
51
build :
52
- uses : ./.github/workflows/build-installer .yml
52
+ uses : ./.github/workflows/build-wheel .yml
53
53
54
54
publish-testpypi :
55
55
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments