mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2025-09-02 22:59:48 +00:00
26 lines
706 B
Bash
Executable File
26 lines
706 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function send_notification() {
|
|
echo "$1"
|
|
}
|
|
|
|
function assert_success() {
|
|
"${@}"
|
|
local status=${?}
|
|
if [ ${status} -ne 0 ]; then
|
|
send_notification "### Error ${status} at: ${BASH_LINENO[*]} ###"
|
|
exit ${status}
|
|
fi
|
|
}
|
|
|
|
readarray -t projects <<< "`./gradlew getPublishableModules --quiet`"
|
|
for project in "${projects[@]}"; do
|
|
echo "Start publishing of $project"
|
|
assert_success ./gradlew "$project:publishAllPublicationsToSonatypeRepository" --no-parallel --quiet
|
|
echo "Complete publishing of $project"
|
|
echo "Start uploading of $project"
|
|
assert_success ./gradlew uploadSonatypePublication --quiet
|
|
echo "Complete uploading of $project"
|
|
done
|
|
|