Skip to content

Commit

Permalink
release: no extra v in v0.6.0
Browse files Browse the repository at this point in the history
My version string had a v prefixed which was wrong
  • Loading branch information
manuelnaranjo committed Aug 27, 2024
1 parent 353706f commit 5ef0a73
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/release/defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,13 @@ def build_for_platform(name, value):
target_platform = ":{}".format(name),
)

_version = VERSION

if _version.startswith("v"):
_version = _version[1:]

artifact = "bazeldnf-v{version}-{platform}".format(
version = VERSION,
version = _version,
platform = name,
)
copy_file(
Expand Down

0 comments on commit 5ef0a73

Please sign in to comment.