This commit is contained in:
2019-08-13 22:20:30 +02:00
parent 313c9fa696
commit fde51cff62

View File

@@ -42,18 +42,18 @@ echo 'Git tag for release freezing'
git tag $RELEASE_VERSION git tag $RELEASE_VERSION
cd ../minager-properties || exit 1 cd ../minager-properties || exit 1
git tag $RELEASE_VERSION || exit 1 git tag $RELEASE_VERSION || exit 1
cd .. || exit 1 cd - || exit 1
echo 'Change files to next version' echo 'Change files to next version'
setVersion $NEXT_VERSION setVersion $NEXT_VERSION
echo 'Git commit and push' echo 'Git commit and push'
# Minager-properties # Minager-properties
cd ../minager-properties cd ../minager-properties || exit 1
git add application-prod.yml git add application-prod.yml || exit 1
git commit -m "Set version for next iteration: $NEXT_VERSION" git commit -m "Set version for next iteration: $NEXT_VERSION" || exit 1
git push origin $BRANCH_NAME git push origin $BRANCH_NAME || exit 1
cd - cd - || exit 1
# Minager # Minager
git add pom.xml git add pom.xml