File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed
Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 66 - v*
77
88jobs :
9- pypi :
9+ wheel :
1010 name : Build wheels on ${{ matrix.os }}
1111 runs-on : ${{ matrix.os }}
1212 strategy :
2828 run : python -m cibuildwheel --output-dir wheelhouse
2929 - name : Check build result
3030 run : ls -lh wheelhouse/
31+ - uses : actions/upload-artifact@v4
32+ with :
33+ name : cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
34+ path : ./wheelhouse/*.whl
35+
36+ pypi :
37+ needs : [wheel]
38+ runs-on : ubuntu-latest
39+ steps :
40+ - uses : actions/download-artifact@v4
41+ with :
42+ pattern : cibw-*
43+ path : wheelhouse/
44+ merge-multiple : true
45+ - name : Check download result
46+ run : ls -lht wheelhouse/
3147 - name : Publish to PyPI
3248 uses : pypa/gh-action-pypi-publish@release/v1
3349 with :
Original file line number Diff line number Diff line change 3333 __file__ as _libmc_so_file
3434)
3535
36- __VERSION__ = "1.4.10 "
37- __version__ = "1.4.10 "
36+ __VERSION__ = "1.4.11 "
37+ __version__ = "1.4.11 "
3838__author__ = "mckelvin"
3939__email__ = "mckelvin@users.noreply.github.com"
4040__date__ = "Fri Jun 7 06:16:00 2024 +0800"
Original file line number Diff line number Diff line change 11package golibmc
22
3- const _Version = "1.4.10 "
3+ const _Version = "1.4.11 "
44const _Author = "mckelvin"
55const _Email = "mckelvin@users.noreply.github.com"
66const _Date = "Fri Jun 7 06:16:00 2024 +0800"
You can’t perform that action at this time.
0 commit comments