Skip to content

Commit a8a785e

Browse files
authored
fix: #dev-deploy tag fix 6
1 parent 596b9e5 commit a8a785e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/dev.kodemy.deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jobs:
195195
run: |
196196
BUILD_NUMBER="${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}"
197197
echo "${BUILD_NUMBER}"
198-
VERSION="$(mvn -q -U -Dexpression=project.build.finalName help:evaluate -DforceStdout=true -DbuildNumber=${BUILD_NUMBER})"
198+
VERSION=$(echo $last_tag | awk -F. '{printf "v%d.%d.%d", $1, $2+1, 0}')
199199
echo "DIST_VERSION=${VERSION}" >> $GITHUB_ENV
200200
201201
- name: Create Tag

0 commit comments

Comments
 (0)