Skip to content

Commit 1c21428

Browse files
make charts check work
1 parent 970bd40 commit 1c21428

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/check_charts.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ jobs:
3636
with:
3737
version: v3.9.2
3838

39+
# Add DevSeed helm repository
40+
- name: Add DevSeed helm repository
41+
run: helm repo add devseed https://devseed.com/eoapi-k8s/
42+
3943
- uses: actions/setup-python@v5
4044
with:
4145
python-version: 3.7
@@ -46,13 +50,13 @@ jobs:
4650
- name: Run chart-testing (list-changed)
4751
id: list-changed
4852
run: |
49-
changed=$(ct list-changed --chart-dirs deployment --target-branch ${{ github.event.repository.default_branch }})
53+
changed=$(ct list-changed --chart-dirs deployment/helm --target-branch ${{ github.event.repository.default_branch }})
5054
if [[ -n "$changed" ]]; then
5155
echo "::set-output name=changed::true"
5256
fi
5357
5458
- name: Run chart-testing (lint)
55-
run: ct lint --chart-dirs deployment --target-branch ${{ github.event.repository.default_branch }}
59+
run: ct lint --chart-dirs deployment/helm --target-branch ${{ github.event.repository.default_branch }}
5660

5761
- name: Build container
5862
uses: docker/build-push-action@v6

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,4 @@ Session.vim
3939
**/charts/*.tgz
4040

4141
.history
42+
.venv/

0 commit comments

Comments
 (0)