Skip to content

Commit 21d2430

Browse files
authored
Merge pull request #4685 from project-koku/release_prod-hccm.35594
Deployment commit for prod-hccm
2 parents b9bbb09 + 5ba524b commit 21d2430

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/tag_release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
DATE=$(date +"%Y.%m.%d")
2424
PREV_RELEASE=$(git tag --list | tail -1)
2525
MINOR_VERSION=0
26+
APP_PREFIX=${{ env.BRANCH }} | cut -d'-' -f2
2627
case $PREV_RELEASE in
2728
*"$DATE"*)
2829
MINOR_VERSION="$PREV_RELEASE" | cut -d'.' -f5
@@ -32,7 +33,7 @@ jobs:
3233
MINOR_VERSION=0
3334
;;
3435
esac
35-
TAG="r.$DATE.$MINOR_VERSION"
36+
TAG="r-$APP_PREFIX.$DATE.$MINOR_VERSION"
3637
git config --local user.email "[email protected]"
3738
git config --local user.name "Cost Management Release Action"
3839
git log $(git tag --list | tail -1)..${{ env.BRANCH }} | git tag -a $TAG -F -

0 commit comments

Comments
 (0)