2020-12-10 04:20:05 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-10-05 20:23:04 +08:00
|
|
|
CONFIG_DIR=git-repo/ci/config
|
2020-12-10 04:20:05 +08:00
|
|
|
|
|
|
|
version=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' )
|
|
|
|
|
2023-10-05 20:23:04 +08:00
|
|
|
java -jar /concourse-release-scripts.jar \
|
|
|
|
--spring.config.location=${CONFIG_DIR}/release-scripts.yml \
|
|
|
|
publishToSdkman $RELEASE_TYPE $version $LATEST_GA || { exit 1; }
|
2020-12-10 04:20:05 +08:00
|
|
|
|
|
|
|
echo "Push to SDKMAN complete"
|