mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
7f3f4ca3c7
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
9 lines
233 B
Plaintext
9 lines
233 B
Plaintext
genrule(
|
|
name = "actionlint_bin",
|
|
srcs = ["actionlint"],
|
|
outs = ["actionlint_bin_out"],
|
|
cmd = "cp $< $@", # Copy the binary to the output directory.
|
|
executable = True,
|
|
visibility = ["//visibility:public"],
|
|
)
|