From f58bc09b09cbeef48e92cb99f5a2ae200a60ac57 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Tue, 6 Dec 2022 12:49:39 -0700 Subject: [PATCH] [py] fix sdist publish instructions It appears that only wheels are being published to pypi, this should fix the publishing procedure to include sdists. Signed-off-by: James Hilliard --- 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 ```