You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2021/04/13 21:23:46 UTC

[camel-k] branch master updated: chore(release): update operator version during release

This is an automated email from the ASF dual-hosted git repository.

nferraro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/master by this push:
     new 1f94689  chore(release): update operator version during release
1f94689 is described below

commit 1f94689ee2011c807ee2222f78c7d6709c25c770
Author: nicolaferraro <ni...@gmail.com>
AuthorDate: Tue Apr 13 23:23:28 2021 +0200

    chore(release): update operator version during release
---
 script/set_version.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/script/set_version.sh b/script/set_version.sh
index ce4c642..5b27650 100755
--- a/script/set_version.sh
+++ b/script/set_version.sh
@@ -28,7 +28,7 @@ image_name=${2:-docker.io\/apache\/camel-k}
 sanitized_image_name=${image_name//\//\\\/}
 
 
-for f in $(find $location/../deploy -type f -name "*.yaml" | grep -v olm-catalog);
+for f in $(find $location/../config/manager -type f -name "*.yaml");
 do
   if [[ "$OSTYPE" == "linux-gnu"* ]]; then
     sed -i -r "s/docker.io\/apache\/camel-k:([0-9]+[a-zA-Z0-9\-\.].*).*/${sanitized_image_name}:${version}/" $f