Skip to content

Commit

Permalink
fix(release): wrong replacement for $(location) during code review (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle committed Feb 8, 2023
1 parent 13a9120 commit 6c8ae76
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/runfiles/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,16 @@ py_wheel(
)

# TODO(alexeagle): carry forward #1015 to make this part of the py_wheel macro
# Typical command-line to run this:
# TWINE_USERNAME=__token__ TWINE_PASSWORD=pypi-*** \
# bazel run --stamp --embed_label=1.2.4 -- \
# //python/runfiles:wheel.publish --repository testpypi
py_binary(
name = "wheel.publish",
srcs = ["@publish_deps_twine//:rules_python_wheel_entry_point_twine.py"],
args = [
"upload",
"$(execpath :wheel.dist)/*",
"$(rootpath :wheel.dist)/*",
],
data = [":wheel.dist"],
imports = ["."],
Expand Down

0 comments on commit 6c8ae76

Please sign in to comment.