From f59020ca8f41f79407b8cd93077e0bffaac027f7 Mon Sep 17 00:00:00 2001 From: subochev Date: Tue, 7 Apr 2026 18:26:40 +0300 Subject: [PATCH] =?UTF-8?q?DEVX-200:=20[BE]=20=D0=A3=D0=BD=D0=B8=D1=84?= =?UTF-8?q?=D0=B8=D1=86=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D1=82=D1=8C=20=D0=BF?= =?UTF-8?q?=D0=BE=D0=BD=D1=8F=D1=82=D0=B8=D0=B5=20=D0=B2=D0=B5=D1=80=D1=81?= =?UTF-8?q?=D0=B8=D0=B8=20=D1=81=D0=B5=D1=80=D0=B2=D0=B8=D1=81=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build-frontend.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build-frontend.yml b/.gitea/workflows/build-frontend.yml index 32eaef3..3ba98c5 100644 --- a/.gitea/workflows/build-frontend.yml +++ b/.gitea/workflows/build-frontend.yml @@ -121,6 +121,9 @@ jobs: pathToHelm='./helms/${{ github.event.inputs.repo_path }}' releaseName=$(basename "$pathToHelm") echo "Release Name: $releaseName" + ls ./devspc/stands/${{ github.event.inputs.namespace }} + ls ./ + echo "workspace: ${{ github.workspace }}" helm upgrade --install "$releaseName" "$pathToHelm" \ --namespace ${{ github.event.inputs.namespace }} \ --kubeconfig ./ku.yaml \ @@ -130,8 +133,8 @@ jobs: --set-string 'repository.name=${{ github.event.inputs.repo_path }}' \ --set-string 'repository.branch=${{ github.event.inputs.branch }}' \ --set "imagePullSecrets[0].name=regcred" \ - -f ./devspc/stands/${{ github.event.inputs.namespace }}/values.yaml \ - -f ./devspc/values.yaml \ + -f "${{ github.workspace }}/devspc/stands/${{ github.event.inputs.namespace }}/values.yaml" \ + -f "${{ github.workspace }}/devspc/values.yaml" \ --wait - name: 'Cleanup' if: always()