We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ad31a2 commit c6e9257Copy full SHA for c6e9257
.github/workflows/code.yml
@@ -60,14 +60,14 @@ jobs:
60
python-version: "3.7"
61
62
- name: Install Python Dependencies
63
- run: pip install build
+ run: pip install build cibuildwheel
64
65
- name: Build Sdist
66
if: matrix.sdist
67
run: python -m build --sdist .
68
69
- name: Build Wheel
70
- uses: pypa/cibuildwheel@v2.3.0
+ run: cibuildwheel --output-dir dist
71
env:
72
CIBW_BUILD: ${{ matrix.python }}*64
73
CIBW_TEST_EXTRAS: dev
@@ -83,7 +83,7 @@ jobs:
83
uses: actions/upload-artifact@v2
84
with:
85
name: dist
86
- path: ./wheelhouse/*.whl
+ path: dist/softioc*
87
88
- name: Upload coverage to Codecov
89
uses: codecov/codecov-action@v2
0 commit comments