diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5ea3f1b..5bef146 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,6 +29,9 @@ jobs: - name: Add Helm repositories from dependencies run: | helm repo add bitnami https://charts.bitnami.com/bitnami + for dir in $(ls -d charts/*/); do + helm dependency list $dir 2> /dev/null | grep http | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do echo $cmd; done + done - name: Run chart-releaser uses: helm/chart-releaser-action@v1.4.0 with: diff --git a/charts/mssql/Chart.yaml b/charts/mssql/Chart.yaml index 1b1262d..03e1420 100644 --- a/charts/mssql/Chart.yaml +++ b/charts/mssql/Chart.yaml @@ -7,7 +7,8 @@ dependencies: repository: https://charts.bitnami.com/bitnami tags: - bitnami-common - version: 2.x.x + version: 2.0.3 + # version: 2.x.x description: | Microsoft SQL Server is a legacy DBMS. Ease Migrating to Cloud Native without focusing on migrating your DBMS as first steps.