Skip to content

Commit

Permalink
Release 0.9.2 (#116)
Browse files Browse the repository at this point in the history
Fix typo in `helm_push` rule.
  • Loading branch information
abrisco authored Nov 7, 2024
1 parent 6f2c92f commit b64f166
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module(
name = "rules_helm",
version = "0.9.1",
version = "0.9.2",
compatibility_level = 1,
)

Expand Down
2 changes: 1 addition & 1 deletion helm/private/helm_registry.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def _helm_push_impl(ctx):
)

if image_pushers:
args.add("-image_pusher", ",".join([rlocationpath(p, ctx.workspace_name) for p in image_pushers]))
args.add("-image_pushers", ",".join([rlocationpath(p, ctx.workspace_name) for p in image_pushers]))

args_file = ctx.actions.declare_file("{}.args.txt".format(ctx.label.name))
ctx.actions.write(
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" Version info for the `rules_helm` repository """

VERSION = "0.9.1"
VERSION = "0.9.2"

0 comments on commit b64f166

Please sign in to comment.