initializr/ci/scripts/promote.sh

19 lines
681 B
Bash
Raw Normal View History

#!/bin/bash
source $(dirname $0)/common.sh
2020-12-17 14:11:59 +08:00
CONFIG_DIR=git-repo/ci/config
version=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' )
2020-12-17 14:11:59 +08:00
export BUILD_INFO_LOCATION=$(pwd)/artifactory-repo/build-info.json
java -jar /opt/concourse-release-scripts.jar \
--spring.config.location=${CONFIG_DIR}/release-scripts.yml \
publishToCentral $RELEASE_TYPE $BUILD_INFO_LOCATION artifactory-repo || { exit 1; }
2020-12-17 14:11:59 +08:00
java -jar /opt/concourse-release-scripts.jar \
--spring.config.location=${CONFIG_DIR}/release-scripts.yml \
promote $RELEASE_TYPE $BUILD_INFO_LOCATION || { exit 1; }
echo "Promotion complete"
2020-12-17 14:11:59 +08:00
echo $version > version/version