Skip to content

Commit

Permalink
github action version check fix (#1157)
Browse files Browse the repository at this point in the history
Signed-off-by: Woojoong Kim <[email protected]>
  • Loading branch information
woojoong88 authored Jul 1, 2024
1 parent 3bd5d23 commit aff9e67
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,17 @@ jobs:
while IFS= read -r tc
do
tc_ver=$(yq e '.version' $tc/Chart.yaml)
tag_name=$tc-$tc_ver
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.GH_ONOS_PAT }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{ github.repository }}/releases \
-d '{
"tag_name": "${tc}-${tc_ver}",
"tag_name": "'"$tag_name"'",
"target_commitish": "${{ github.event.repository.default_branch }}",
"name": "${tc}-${tc_ver}",
"name": "'"$tag_name"'",
"draft": false,
"prerelease": false,
"generate_release_notes": true
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.16
version: 0.9.17
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.140
version: 1.4.141
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.16
version: 0.9.17
- name: onos-mho
condition: import.onos-mho.enabled
repository: file://../onos-mho
Expand Down

0 comments on commit aff9e67

Please sign in to comment.