Skip to content

Commit

Permalink
⚡️ :: helm repo add dandydeveloper
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaisqls committed Aug 26, 2023
1 parent 151a566 commit 669236a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,16 @@ jobs:
helm repo add prometheus https://prometheus-community.github.io/helm-charts
helm repo add grafana https://grafana.github.io/helm-charts
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add dandydeveloper https://dandydeveloper.github.io/charts/
- name: Helm build
run: |
changed_helm_packages=$(git diff --name-only HEAD~1 | grep '^charts/' | cut -d/ -f1-2)
echo $changed_helm_packages
while IFS=$'\n' read -r package_directory; do
helm dependency build $package_directory
helm package $package_directory
helm dependency build $package_directory || true
helm package $package_directory || true
done <<< "$changed_helm_packages"
- name: checkout gh-pages branch and helm index
Expand Down

0 comments on commit 669236a

Please sign in to comment.