aws-delivlib 15.0.59 → 15.0.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,6 +10,18 @@ if [[ ! -d ./java ]]; then
|
|
10
10
|
exit 1
|
11
11
|
fi
|
12
12
|
|
13
|
+
if [[ "${FOR_REAL:-}" == "true" ]]; then
|
14
|
+
echo "Publishing to Maven"
|
15
|
+
unset MAVEN_DRYRUN
|
16
|
+
else
|
17
|
+
echo "==========================================="
|
18
|
+
echo " 🏜️ DRY-RUN MODE 🏜️"
|
19
|
+
echo
|
20
|
+
echo "Set FOR_REAL=true to do actual publishing!"
|
21
|
+
echo "==========================================="
|
22
|
+
export MAVEN_DRYRUN='true'
|
23
|
+
fi
|
24
|
+
|
13
25
|
echo "Getting credentials..."
|
14
26
|
credentials=$(aws secretsmanager get-secret-value --secret-id ${MAVEN_LOGIN_SECRET} --output=text --query=SecretString)
|
15
27
|
|