File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66env :
77 BUILD_TYPE : Release
88 MIN_CIBUILDWHEEL_VERSION : 2.16.2
9+ PYTHON_VERSION : 3.11
910
1011jobs :
1112 build_sdist :
1718 - uses : actions/setup-python@v5
1819 name : Install Python
1920 with :
20- python-version : ' 3.x '
21+ python-version : ${{ env.PYTHON_VERSION }}
2122
2223 - name : Install build package
2324 run : python -m pip install build --user
2728
2829 - uses : actions/upload-artifact@v4
2930 with :
31+ name : sdist
3032 path : dist/*.tar.gz
3133 compression-level : 0 # contents are already compressed
3234
9698
9799 - uses : actions/upload-artifact@v4
98100 with :
101+ name : wheel-${{ matrix.config.os }}-${{ matrix.config.cibw-arch }}
99102 path : ./dist/*.whl
100103 compression-level : 0 # contents are already compressed
104+
105+
106+ aggregate_artifact :
107+ name : Aggregate artifact
108+ runs-on : ubuntu-latest
109+ needs : [build_sdist, build_wheels]
110+ steps :
111+ - name : Merge Artifacts
112+ uses : actions/upload-artifact/merge@v4
113+ with :
114+ name : python_wheels
115+ compression-level : 0
116+ delete-merged : true
You can’t perform that action at this time.
0 commit comments