From 29e1cf66c03cd06a3622a0260c8ec5d8efe07fd3 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Tue, 13 Dec 2022 14:47:24 -0400 Subject: [PATCH] [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. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 91a9d7fb9431d..3fc23486a0f4d 100644 --- a/README.md +++ b/README.md @@ -195,8 +195,8 @@ pip install bazel-bin/py/selenium-*.whl To publish run: ```sh -bazel build //py:selenium-wheel -twine upload bazel-bin/py/selenium-*.whl +bazel build //py:selenium-wheel //py:selenium-sdist +twine upload bazel-bin/py/selenium-*.whl bazel-bin/py/selenium-*.tar.gz ```