From 7e56d26622111d2b0ec39b38e1ceb167a4331dd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomislav=20Kopi=C4=87?= Date: Sun, 14 Sep 2025 12:30:59 +0200 Subject: [PATCH] Update --- .gitea/workflows/helm-lint.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/helm-lint.yaml b/.gitea/workflows/helm-lint.yaml index 2118e5d..42b86e6 100644 --- a/.gitea/workflows/helm-lint.yaml +++ b/.gitea/workflows/helm-lint.yaml @@ -12,14 +12,13 @@ jobs: container: image: alpine/helm:3.14.0 steps: - - name: Print Environment - run: env - - name: Clone repo manually run: | - git clone "${CI_REPO_URL}" . - git fetch --tags + echo "Cloning repository $GITHUB_REPOSITORY..." + git clone "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git" "$GITHUB_WORKSPACE" + cd "$GITHUB_WORKSPACE" - name: Run Helm lint run: | - helm lint ./duino-miner-helm + echo "Running helm lint on duino-miner-helm chart" + helm lint "$GITHUB_WORKSPACE/duino-miner-helm"