From 28302e776e9d2bb8f424cf467619fa61d71ac49a Mon Sep 17 00:00:00 2001 From: Andrei Kvapil Date: Tue, 10 Jun 2025 10:22:06 +0200 Subject: [PATCH] [ci] fix clickhouse version parsing Signed-off-by: Andrei Kvapil --- packages/apps/clickhouse/Chart.yaml | 5 ----- packages/apps/clickhouse/Makefile | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/apps/clickhouse/Chart.yaml b/packages/apps/clickhouse/Chart.yaml index 6f286514..ecb82de0 100644 --- a/packages/apps/clickhouse/Chart.yaml +++ b/packages/apps/clickhouse/Chart.yaml @@ -23,8 +23,3 @@ version: 0.9.2 # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. appVersion: "24.9.2" - -dependencies: - - name: cozy-lib - version: 0.1.0 - repository: "http://cozystack.cozy-system.svc/repos/library" diff --git a/packages/apps/clickhouse/Makefile b/packages/apps/clickhouse/Makefile index ae59ae22..9817a1b5 100644 --- a/packages/apps/clickhouse/Makefile +++ b/packages/apps/clickhouse/Makefile @@ -1,4 +1,4 @@ -CLICKHOUSE_BACKUP_TAG = $(shell awk '$$1 == "version:" {print $$2}' Chart.yaml) +CLICKHOUSE_BACKUP_TAG = $(shell awk '$$0 ~ /^version:/ {print $$2}' Chart.yaml) include ../../../scripts/common-envs.mk include ../../../scripts/package.mk