Skip to content

Commit 5b50a8d

Browse files
committed
Fix publish
1 parent 3ca97b8 commit 5b50a8d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.pypirc

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
[distutils]
22
index-servers =
33
pypi
4+
testpypi
45

56
[pypi]
6-
repository: https://pypi.org/project/robotframework-browser/
7+
repository: https://upload.pypi.org/legacy/
8+
9+
[testpypi]
10+
https://test.pypi.org/legacy/

tasks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ def _get_pw_version() -> str:
817817

818818
@task(package)
819819
def release(c):
820-
c.run("python -m twine upload --repository robotframework-browser dist/*")
820+
c.run("python -m twine upload dist/*")
821821

822822

823823
@task()

0 commit comments

Comments
 (0)