You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
518 B
13 lines
518 B
#!/bin/bash |
|
|
|
source $(dirname $0)/common.sh |
|
|
|
version=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' ) |
|
export BUILD_INFO_LOCATION=$(pwd)/artifactory-repo/build-info.json |
|
|
|
java -jar /opt/concourse-release-scripts.jar promote $RELEASE_TYPE $BUILD_INFO_LOCATION > /dev/null || { exit 1; } |
|
|
|
java -jar /opt/concourse-release-scripts.jar distribute $RELEASE_TYPE $BUILD_INFO_LOCATION > /dev/null || { exit 1; } |
|
|
|
echo "Promotion complete" |
|
echo $version > version/version
|
|
|