Files
duino-miner-helm/.gitea/workflows/helm-lint.yaml
Tomislav Kopić 7e56d26622
Some checks failed
Test Helm Chart / helm-lint (push) Failing after 3s
Update
2025-09-14 12:30:59 +02:00

25 lines
566 B
YAML

name: Test Helm Chart
on:
push:
branches:
- main
pull_request:
jobs:
helm-lint:
runs-on: docker
container:
image: alpine/helm:3.14.0
steps:
- name: Clone repo manually
run: |
echo "Cloning repository $GITHUB_REPOSITORY..."
git clone "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git" "$GITHUB_WORKSPACE"
cd "$GITHUB_WORKSPACE"
- name: Run Helm lint
run: |
echo "Running helm lint on duino-miner-helm chart"
helm lint "$GITHUB_WORKSPACE/duino-miner-helm"