Skip to content

Commit 0d4cbfa

Browse files
committed
switch to using Charts folder with subfolders for charts
1 parent 4ad591c commit 0d4cbfa

File tree

10 files changed

+6
-4
lines changed

10 files changed

+6
-4
lines changed

.github/workflows/_helm.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,11 @@ jobs:
4343
set -xe
4444
4545
mkdir -p charts
46-
cd helm
47-
helm package -u --app-version ${VERSION} --version ${VERSION} .
48-
mv *.tgz ../charts
46+
for i in Charts/*; do
47+
cd $(realpath "${i}")
48+
helm package -u --app-version ${VERSION} --version ${VERSION} .
49+
mv *.tgz ../../charts
50+
done
4951
5052
- name: Push tagged helm chart to registry
5153
if: ${{ github.ref_type == 'tag' }}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ repos:
44
hooks:
55
- id: check-added-large-files
66
- id: check-yaml
7-
exclude: ^helm/templates/
7+
exclude: ^Charts/
88
- id: check-merge-conflict
99
- id: end-of-file-fixer
1010

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)