File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 42
42
run : |
43
43
MSGPACK_PUREPYTHON=1 pytest -v test
44
44
45
+ - name : Publish Wheels to TestPyPI
46
+ if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
47
+ uses : pypa/gh-action-pypi-publish@release/v1
48
+ with :
49
+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 43
43
CIBW_ARCHS_MACOS : x86_64 universal2 arm64
44
44
CIBW_SKIP : pp*
45
45
46
- - name : Upload Wheels
46
+ - name : Upload Wheels to artifact
47
47
uses : actions/upload-artifact@v1
48
48
with :
49
49
name : Wheels
50
50
path : wheelhouse
51
51
52
+ - name : Publish Wheels to TestPyPI
53
+ if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
54
+ uses : pypa/gh-action-pypi-publish@release/v1
55
+ with :
56
+ packages_dir : wheelhouse
57
+ password : ${{ secrets.PYPI_API_TOKEN }}
You can’t perform that action at this time.
0 commit comments