We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13a9120 commit 6c8ae76Copy full SHA for 6c8ae76
python/runfiles/BUILD.bazel
@@ -52,12 +52,16 @@ py_wheel(
52
)
53
54
# TODO(alexeagle): carry forward #1015 to make this part of the py_wheel macro
55
+# Typical command-line to run this:
56
+# TWINE_USERNAME=__token__ TWINE_PASSWORD=pypi-*** \
57
+# bazel run --stamp --embed_label=1.2.4 -- \
58
+# //python/runfiles:wheel.publish --repository testpypi
59
py_binary(
60
name = "wheel.publish",
61
srcs = ["@publish_deps_twine//:rules_python_wheel_entry_point_twine.py"],
62
args = [
63
"upload",
- "$(execpath :wheel.dist)/*",
64
+ "$(rootpath :wheel.dist)/*",
65
],
66
data = [":wheel.dist"],
67
imports = ["."],
0 commit comments