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.
11 lines
362 B
11 lines
362 B
#!/bin/bash |
|
|
|
CONFIG_DIR=git-repo/ci/config |
|
|
|
version=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' ) |
|
|
|
java -jar /concourse-release-scripts.jar \ |
|
--spring.config.location=${CONFIG_DIR}/release-scripts.yml \ |
|
publishToSdkman $RELEASE_TYPE $version $LATEST_GA || { exit 1; } |
|
|
|
echo "Push to SDKMAN complete"
|
|
|