diff --git a/src/main/bash/do-release.bash b/src/main/bash/do-release.bash index 877a56c..1d12b87 100755 --- a/src/main/bash/do-release.bash +++ b/src/main/bash/do-release.bash @@ -53,10 +53,12 @@ cd ../minager-properties || exit 1 git add application-prod.yml || exit 1 git commit -m "Set version for next iteration: $NEXT_VERSION" || exit 1 git push origin $BRANCH_NAME || exit 1 +git push origin --tags || exit 1 cd - || exit 1 # Minager git add pom.xml git add src/main/ts/src/environments/environment.prod.ts git commit -m "Set version for next iteration: $NEXT_VERSION" -git push origin $BRANCH_NAME \ No newline at end of file +git push origin $BRANCH_NAME +git push origin --tags \ No newline at end of file