File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -9,20 +9,11 @@ inputs:
9
9
description : ' Folder to place the outputs in, defaults to "wheelhouse"'
10
10
required : false
11
11
default : ' wheelhouse'
12
- artifact :
13
- description : ' Upload/merge wheels into the given artifact if not blank'
14
- required : false
15
- default : ' artifact'
16
12
17
13
runs :
18
14
using : " composite"
19
15
steps :
20
16
- run : pip install cibuildwheel==1.7.1
21
17
shell : bash
22
- - run : python -m cibuildwheel ${{ inputs.package-dir }} --output_dir ${{ inputs.output-dir }}
18
+ - run : python -m cibuildwheel ${{ inputs.package-dir }} --output-dir ${{ inputs.output-dir }}
23
19
shell : bash
24
- - uses : actions/upload-artifact@v2
25
- if : " ${{ inputs.artifact }} != ''"
26
- with :
27
- path : wheelhouse/*
28
- name : ${{ inputs.artifact }}
Original file line number Diff line number Diff line change 96
96
CIBW_TEST_COMMAND : pytest {project}/tests
97
97
CIBW_BUILD_VERBOSITY : 1
98
98
99
+ - uses : actions/upload-artifact@v2
100
+ with :
101
+ path : wheelhouse/*
102
+
99
103
- name : Check wheels
100
104
run : |
101
105
python -m pip install twine
You can’t perform that action at this time.
0 commit comments