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"