comparison hg-web/BUILD @ 227:8bb0ac8f4587

[hg-web] Add Bazel deployment target
author MrJuneJune <me@mrjunejune.com>
date Sun, 02 Aug 2026 16:31:44 -0700
parents 0e7b9464248d
children c5129452493e
comparison
equal deleted inserted replaced
226:3fa4bf481f42 227:8bb0ac8f4587
85 85
86 bundle( 86 bundle(
87 name = "hg_web_server_bundle", 87 name = "hg_web_server_bundle",
88 binary = ":hg_web_server", 88 binary = ":hg_web_server",
89 ) 89 )
90
91 sh_binary(
92 name = "deploy",
93 srcs = ["deploy.sh"],
94 data = [
95 ":hg_web_server_bundle",
96 "@bazel_tools//tools/bash/runfiles",
97 ],
98 )