tdlight-java/scripts/core/deploy_release.sh

20 lines
390 B
Bash
Raw Normal View History

2020-12-29 23:38:50 +01:00
#!/bin/bash -e
# OTHER REQUIRED ENVIRONMENT VARIABLES:
# REVISION = <revision>
# Check variables correctness
if [ -z "${REVISION}" ]; then
echo "Missing parameter: REVISION"
exit 1
fi
cd "../../"
2020-12-29 23:38:50 +01:00
cd "bom"
mvn -B -Drevision="${REVISION}" -Dtdlight.build.type=legacy clean deploy
mvn -B -Drevision="${REVISION}" -Dtdlight.build.type=standard clean deploy
cd "../"
2020-12-29 23:38:50 +01:00
echo "Done."
exit 0