Skip to content

Commit 0b580e3

Browse files
committed
fix: split install and wheel build step
1 parent 7fdb6e3 commit 0b580e3

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ jobs:
7373
with:
7474
python-version: "3.10"
7575
cache: "pip"
76-
- run:
77-
pip install -r requirements.txt
78-
python setup.py bdist_wheel
79-
76+
- name: Install dependencies
77+
run: pip install -r requirements.txt
78+
- name: Build wheel
79+
run: python setup.py bdist_wheel
8080

8181
- name: Upload wheels
8282
uses: actions/upload-artifact@v4
@@ -104,9 +104,10 @@ jobs:
104104
python-version: '3.10'
105105
architecture: ${{ matrix.target }}
106106
cache: "pip"
107-
- run:
108-
pip install -r requirements.txt
109-
python setup.py bdist_wheel
107+
- name: Install dependencies
108+
run: pip install -r requirements.txt
109+
- name: Build wheel
110+
run: python setup.py bdist_wheel
110111

111112
- name: Upload wheels
112113
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)