We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0fc7c25 + 7dfe93d commit cdc7f9cCopy full SHA for cdc7f9c
.github/workflows/tag_release.yml
@@ -23,6 +23,7 @@ jobs:
23
DATE=$(date +"%Y.%m.%d")
24
PREV_RELEASE=$(git tag --list | tail -1)
25
MINOR_VERSION=0
26
+ APP_PREFIX=${{ env.BRANCH }} | cut -d'-' -f2
27
case $PREV_RELEASE in
28
*"$DATE"*)
29
MINOR_VERSION="$PREV_RELEASE" | cut -d'.' -f5
@@ -32,7 +33,7 @@ jobs:
32
33
34
;;
35
esac
- TAG="r.$DATE.$MINOR_VERSION"
36
+ TAG="r-$APP_PREFIX.$DATE.$MINOR_VERSION"
37
git config --local user.email "[email protected]"
38
git config --local user.name "Cost Management Release Action"
39
git log $(git tag --list | tail -1)..${{ env.BRANCH }} | git tag -a $TAG -F -
0 commit comments