Skip to content

v1.4.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 13 Dec 08:03
3fb6bf0

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "masorange_rules_helm", version = "1.4.1")

Using WORKSPACE:

Paste this into your WORKSPACE file:

http_archive(
    name = "masorange_rules_helm",
    sha256 = "90ebfc6432ea62587f392d825230b81babd44f69c6d2a7ffafae1ced28ed687c",
    strip_prefix = "masorange_rules_helm-1.4.1",
    urls = [
        "https://github.com/masmovil/masorange_rules_helm/releases/download/v1.4.1/masorange_rules_helm-v1.4.1.tar.gz",
    ],
)

load("@masorange_rules_helm//:repositories.bzl", "masorange_rules_helm_repositories")

masorange_rules_helm_repositories()

load("@masorange_rules_helm//:config.bzl", "masorange_rules_helm_configure")

masorange_rules_helm_configure()

What's Changed

  • fix(gcs): shas reference for latest version 502 by @danigar in #82

Full Changelog: v1.4.0...v1.4.1