Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github action version check fix #1154

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand All @@ -51,7 +51,7 @@ jobs:
"prerelease": false,
"generate_release_notes": true
}'
done
done <<< $target_charts

publish-charts:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion onos-pci/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions sd-ran/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading