We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a43a0e commit 48d6197Copy full SHA for 48d6197
1 file changed
.github/workflows/publish.yml
@@ -1,4 +1,4 @@
1
-name: Push to ECR
+name: Publish to PyPI
2
3
on:
4
push:
@@ -29,7 +29,7 @@ jobs:
29
echo -e "password = $PYPI_TOKEN" >> ~/.pypirc
30
31
- name: create packages
32
- run: python3 setup.py sdist bdist_wheel
+ run: python setup.py sdist bdist_wheel
33
34
- name: upload to pypi
35
- run: python3 -m twine upload dist/* --skip-existing
+ run: python -m twine upload dist/* --skip-existing
0 commit comments