Skip to content

Commit

Permalink
fix(ci): nightly update action
Browse files Browse the repository at this point in the history
  • Loading branch information
squakez committed Oct 19, 2024
1 parent d5eb93a commit ff53a2d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/sync_cq.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ff53a2d

Please sign in to comment.