This is an automated email from the ASF dual-hosted git repository.
pcongiusti pushed a commit to branch release-3.15.x
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
The following commit(s) were added to refs/heads/release-3.15.x by this push:
new ff53a2d7 fix(ci): nightly update action
ff53a2d7 is described below
commit ff53a2d78e9f9f427960cbe69f457e613da537c2
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Sat Oct 19 10:21:53 2024 +0200
fix(ci): nightly update action
---
scripts/sync_cq.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/scripts/sync_cq.sh b/scripts/sync_cq.sh
index 4fe0b893..97440f69 100755
--- a/scripts/sync_cq.sh
+++ b/scripts/sync_cq.sh
@@ -37,6 +37,10 @@ main() {
git clone https://github.com/apache/camel-quarkus.git
pushd camel-quarkus
CQ_VERSION=$(git tag | grep $VERSION_MM | sort | tail -n 1)
+ if [ "$CQ_VERSION" == "" ] ; then
+ echo "INFO: there is no new $VERSION_MM released yet, bye!"
+ exit 0
+ fi
if [ "$SKIP_VERSION_CHECK" == "false" ] && [ "$CQ_VERSION" ==
"$VERSION_FULL" ]; then
echo "INFO: there is no new version released, bye!"
exit 0