...

Text file src/edge-infra.dev/hack/build/rules/container/sign/cosign_key.bzl

Documentation: edge-infra.dev/hack/build/rules/container/sign

     1"""Defines a rule that serializes a cosign key into the Bazel graph"""
     2
     3CosignKeyInfo = provider(
     4    doc = "A file containing a cosign-valid key for signing",
     5    fields = {
     6        "key_file": "A file target containing a cosign-valid key for signing",
     7        "key_name": "A human readable name for this key",
     8    },
     9)

View as plain text