ci: fix build.sh logging

This commit is contained in:
FalsePattern 2024-06-03 18:48:33 +02:00
parent d73a7945ad
commit 6a7fce8510
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23

View file

@ -32,22 +32,22 @@ if [[ -z "${MAVEN_DEPLOY_USER}" ]]; then
fi fi
if [[ -z "${MAVEN_DEPLOY_PASSWORD}" ]]; then if [[ -z "${MAVEN_DEPLOY_PASSWORD}" ]]; then
echo "MAVEN_DEPLOY_USER missing!" echo "MAVEN_DEPLOY_PASSWORD missing!"
exit 1 exit 1
fi fi
if [[ -z "${IJ_PUBLISH_TOKEN}" ]]; then if [[ -z "${IJ_PUBLISH_TOKEN}" ]]; then
echo "MAVEN_DEPLOY_USER missing!" echo "IJ_PUBLISH_TOKEN missing!"
exit 1 exit 1
fi fi
if [ ! -f secrets/chain.crt ]; then if [ ! -f secrets/chain.crt ]; then
echo "Certificate chain does not exist!" echo "secrets/chain.crt missing!"
exit 1 exit 1
fi fi
if [ ! -f secrets/private.pem ]; then if [ ! -f secrets/private.pem ]; then
echo "Plugin signing key does not exist!" echo "secrets/private.pem missing!"
exit 1 exit 1
fi fi