constellation/bazel/toolchains/BUILD.actionlint.bazel

9 lines
233 B
Plaintext
Raw Normal View History

genrule(
name = "actionlint_bin",
srcs = ["actionlint"],
outs = ["actionlint_bin_out"],
cmd = "cp $< $@", # Copy the binary to the output directory.
executable = True,
visibility = ["//visibility:public"],
)