keycloak-scim/release.sh

24 lines
726 B
Bash
Raw Normal View History

2021-08-06 17:49:38 +00:00
#!/bin/bash -e
VERSION=`./get-version.sh`
echo "Version: $VERSION"
echo "------------------------------------------------------------------------------------------------------------"
echo "Building:"
echo ""
mvn --file=./keycloak-theme/pom.xml -Pnexus-staging -DretryFailedDeploymentCount=10 -DautoReleaseAfterClose=true clean deploy
2021-08-06 17:49:38 +00:00
echo "------------------------------------------------------------------------------------------------------------"
echo "Create tag:"
echo ""
git tag $VERSION
git push origin $VERSION
echo "------------------------------------------------------------------------------------------------------------"
echo "Upload to GitHub releases:"
echo ""
hub release create -m "$VERSION" $VERSION