12 lines
350 B
Bash
Executable File
12 lines
350 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
readonly BUILD_INFO_LOCATION="$(pwd)/artifactory-repo/build-info.json"
|
|
readonly CONFIG_DIR="$(pwd)/git-repo/ci/config"
|
|
|
|
java -jar /concourse-release-scripts.jar \
|
|
--spring.config.location="$CONFIG_DIR/release-scripts.yml" \
|
|
publishToCentral 'RELEASE' "$BUILD_INFO_LOCATION" "artifactory-repo"
|
|
|
|
echo "Sync complete"
|