Skip to content

Commit

Permalink
remove obsolete "-dev.sha" prefix (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
agoelzer authored Oct 8, 2024
1 parent 3570472 commit b798466
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
command: |
VERSION=$(grep -e "^appVersion:" charts/nuodbaas-webui/Chart.yaml | cut -d \" -f 2 | cut -d - -f 1)
SHA=$(git rev-parse --short HEAD)
VERSION_SHA=${VERSION}-dev.sha-${SHA}
VERSION_SHA=${VERSION}-${SHA}
mkdir -p tmp/repos/$DBAAS_DEPLOY_REPO \
&& cd tmp/repos/$DBAAS_DEPLOY_REPO
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ KUBECTL := bin/kubectl
IMG_REPO := nuodbaas-webui
VERSION := $(shell grep -e "^appVersion:" charts/nuodbaas-webui/Chart.yaml | cut -d \" -f 2 | cut -d - -f 1)
SHA := $(shell git rev-parse --short HEAD)
VERSION_SHA ?= ${VERSION}-dev.sha-${SHA}
VERSION_SHA ?= ${VERSION}-${SHA}
UNCOMMITTED := $(shell rm -f get_helm.sh && git status --porcelain)

# The help target prints out all targets with their descriptions organized
Expand Down

0 comments on commit b798466

Please sign in to comment.