Skip to content

Commit

Permalink
Fix image version suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
sbalka committed Sep 16, 2021
1 parent 5acd43d commit 738b42d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ PLATFORMS := linux/amd64 windows/amd64 darwin/amd64
TEMP = $(subst /, ,$@)
OS = $(word 1, $(TEMP))
ARCH = $(word 2, $(TEMP))
IMAGE_NAME = kondukto/kondukto-cli
IMAGE_VERSION = $(shell echo $(VERSION)|cut -d "-" -f1)
IMAGE_NAME = "kondukto/kondukto-cli"
IMAGE_VERSION = $(shell echo $(VERSION)|cut -d "+" -f1)

VERSION := $(TAG)+$(COMMIT)

Expand Down

0 comments on commit 738b42d

Please sign in to comment.