We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a34dc94 commit caadbf2Copy full SHA for caadbf2
.github/workflows/test.yml
@@ -42,3 +42,8 @@ jobs:
42
run: |
43
MSGPACK_PUREPYTHON=1 pytest -v test
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 }}
.github/workflows/wheel.yml
@@ -43,9 +43,15 @@ jobs:
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
CIBW_SKIP: pp*
- - name: Upload Wheels
+ - name: Upload Wheels to artifact
uses: actions/upload-artifact@v1
with:
name: Wheels
50
path: wheelhouse
51
52
53
54
55
56
+ packages_dir: wheelhouse
57
0 commit comments