Skip to content

Commit 29e1cf6

Browse files
[py] fix sdist publish instructions (#11375)
It appears that only wheels are being published to pypi, this should fix the publishing procedure to include sdists.
1 parent ee136e1 commit 29e1cf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ pip install bazel-bin/py/selenium-*.whl
195195
To publish run:
196196

197197
```sh
198-
bazel build //py:selenium-wheel
199-
twine upload bazel-bin/py/selenium-*.whl
198+
bazel build //py:selenium-wheel //py:selenium-sdist
199+
twine upload bazel-bin/py/selenium-*.whl bazel-bin/py/selenium-*.tar.gz
200200
```
201201
</details>
202202

0 commit comments

Comments
 (0)