Skip to content

Commit 1c6fa1a

Browse files
ci: update workflows to use revised build scripts
1 parent 39bed90 commit 1c6fa1a

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

.github/workflows/build-installer.yml renamed to .github/workflows/build-wheel.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,12 @@ jobs:
2727
- name: setup frontend
2828
uses: ./.github/actions/install-frontend-deps
2929

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
3433

3534
- name: upload python distribution artifact
3635
uses: actions/upload-artifact@v4
3736
with:
3837
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 }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
always_run: true
5050

5151
build:
52-
uses: ./.github/workflows/build-installer.yml
52+
uses: ./.github/workflows/build-wheel.yml
5353

5454
publish-testpypi:
5555
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)