Skip to content

Commit 9164c3e

Browse files
committed
github actions: stop uploading to pypi from python2 flow
cause of that upload the main py3 flow is marked as failed, since one of the artifacts is already uploaded by python2
1 parent ec0aab1 commit 9164c3e

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

.github/workflows/test-python2.yaml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,3 @@ jobs:
3838
- uses: actions/upload-artifact@v2
3939
with:
4040
path: dist/*.tar.gz
41-
42-
upload_pypi:
43-
needs: [build, test]
44-
runs-on: ubuntu-20.04
45-
# upload to PyPI on every tag starting with 'v'
46-
if: github.event_name == 'push' && endsWith(github.event.ref, 'scylla')
47-
# alternatively, to publish when a GitHub Release is created, use the following rule:
48-
# if: github.event_name == 'release' && github.event.action == 'published'
49-
steps:
50-
- uses: actions/download-artifact@v2
51-
with:
52-
name: artifact
53-
path: dist
54-
55-
- uses: pypa/gh-action-pypi-publish@master
56-
with:
57-
user: __token__
58-
password: ${{ secrets.PYPI_API_TOKEN }}
59-

0 commit comments

Comments
 (0)