From 1b3aaf2528f266cb0a6f96df02c7eb422765ca76 Mon Sep 17 00:00:00 2001 From: Ilya Andreev <18560147+andreev-io@users.noreply.github.com> Date: Thu, 23 Jan 2025 13:11:24 +0000 Subject: [PATCH] Fix relative path: --- .github/workflows/kubenetmon.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/kubenetmon.yaml b/.github/workflows/kubenetmon.yaml index 8dc9631..c3bb696 100644 --- a/.github/workflows/kubenetmon.yaml +++ b/.github/workflows/kubenetmon.yaml @@ -132,7 +132,7 @@ jobs: run: | cd deploy/helm ct install \ - --config ../../../.github/workflows/configs/ct.yaml \ + --config ../../ct.yaml \ --target-branch ${{ github.event.repository.default_branch }} \ --chart-dirs . \ --charts kubenetmon-agent \ @@ -143,7 +143,7 @@ jobs: --set=configuration.skipConntrackSanityCheck=true \ --set=configuration.uptimeWaitDuration=1s" ct install \ - --config ../../../.github/workflows/configs/ct.yaml \ + --config ../../ct.yaml \ --target-branch ${{ github.event.repository.default_branch }} \ --chart-dirs . \ --charts kubenetmon-server \