Files
spring-credhub/ci/scripts/promote.sh
Gareth Clay bf625b212d Switch to concourse-release-scripts image
The jar file is no longer publicly available.
2023-10-03 12:56:28 +01:00

11 lines
359 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
readonly BUILD_INFO_LOCATION="$(pwd)/artifactory-repo/build-info.json"
readonly VERSION=$( jq -r '.buildInfo.modules[0].id' < "$BUILD_INFO_LOCATION" | sed 's/.*:.*:\(.*\)/\1/' )
java -jar /concourse-release-scripts.jar promote "$RELEASE_TYPE" "$BUILD_INFO_LOCATION"
echo "Promotion complete"
echo "$VERSION" > version/version