diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3df7111b..822722f5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,9 +34,9 @@ jobs: run: | sudo snap install yq target_charts=$(./build/bin/version_check.sh get_changed_charts) - for tc in $target_charts) - do - tc_ver=$(yq e '.version' ${tc}/Chart.yaml) + while IFS= read -r tc + do + tc_ver=$(yq e '.version' $tc/Chart.yaml) curl -L \ -X POST \ -H "Accept: application/vnd.github+json" \ @@ -51,7 +51,7 @@ jobs: "prerelease": false, "generate_release_notes": true }' - done + done <<< $target_charts publish-charts: runs-on: ubuntu-latest diff --git a/onos-pci/Chart.yaml b/onos-pci/Chart.yaml index 4ffb3019..e4f35ae3 100644 --- a/onos-pci/Chart.yaml +++ b/onos-pci/Chart.yaml @@ -8,7 +8,7 @@ name: onos-pci description: ONOS PCI xAPP kubeVersion: ">=1.17.0" type: application -version: 0.9.13 +version: 0.9.14 appVersion: v0.4.10 keywords: - onos diff --git a/sd-ran/Chart.yaml b/sd-ran/Chart.yaml index b91fbda2..20ac97dd 100644 --- a/sd-ran/Chart.yaml +++ b/sd-ran/Chart.yaml @@ -8,7 +8,7 @@ name: sd-ran description: Umbrella chart to deploy all ONOS-RIC and simulator kubeVersion: ">=1.17.0" type: application -version: 1.4.137 +version: 1.4.138 appVersion: v1.5.0 keywords: - onos @@ -62,7 +62,7 @@ dependencies: - name: onos-pci condition: import.onos-pci.enabled repository: file://../onos-pci - version: 0.9.13 + version: 0.9.14 - name: onos-mho condition: import.onos-mho.enabled repository: file://../onos-mho