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 c933536 commit 53038deCopy full SHA for 53038de
.github/workflows/ci.yml
@@ -33,17 +33,15 @@ jobs:
33
- name: Copy wheels in dist
34
run: cp wheelhouse*/fastrlock*.whl dist/
35
36
+ - name: Release
37
+ uses: softprops/action-gh-release@v1
38
+ if: startsWith(github.ref, 'refs/tags/')
39
+ with:
40
+ files: dist/*manylinux*.whl
41
+
42
- name: Archive Wheels
43
uses: actions/upload-artifact@v2
44
with:
45
name: ${{ matrix.env.TARGET }}
46
path: dist/*manylinux*.whl
47
if-no-files-found: ignore
-
- - name: Push build artifacts to PyPI
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
- uses: pypa/[email protected]
- with:
- skip_existing: true
48
- user: __token__
49
- password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments