1 Commits

Author SHA1 Message Date
36e89677ca Update ghcr.io/immich-app/immich-server Docker tag to v1.134.0
Some checks failed
Helm Lint / helm-lint (pull_request) Failing after 3m7s
2025-06-09 21:50:02 +00:00

View File

@@ -28,6 +28,15 @@ jobs:
token: ${{ secrets.GITEA_TOKEN }}
version: latest
- name: Lint Helm Chart
run: |
find clusters -maxdepth 4 -name Chart.yaml -exec dirname {} \; | while read -r chart_path; do
echo "Building chart dependency in $chart_path"
helm dependency build "$chart_path"
echo "Linting chart in $chart_path"
helm lint "$chart_path"
done
- name: Lint Helm Chart
run: |
set -e # Exit immediately if a command exits with a non-zero status.