v0.6.2
Pre-release
Pre-release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_oci",
sha256 = "ee13d5d1a4548ecc6c3498474dd1c467f5ac46cf8ccfbb361f94c6a333b27b89",
strip_prefix = "rules_oci-0.6.2",
url = "https://github.com/bazel-contrib/rules_oci/releases/download/v0.6.2/rules_oci-v0.6.2.tar.gz",
)
load("@rules_oci//oci:dependencies.bzl", "rules_oci_dependencies")
rules_oci_dependencies()
load("@rules_oci//oci:repositories.bzl", "LATEST_CRANE_VERSION", "LATEST_ZOT_VERSION", "oci_register_toolchains")
oci_register_toolchains(
name = "oci",
crane_version = LATEST_CRANE_VERSION,
# Uncommenting the zot toolchain will cause it to be used instead of crane for some tasks.
# Note that it does not support docker-format images.
# zot_version = LATEST_ZOT_VERSION,
)
What's Changed
- fix: CI shouldn't skip the root folder for bzlmod by @alexeagle in #219
Full Changelog: v0.6.1...v0.6.2