Skip to content

Commit

Permalink
github action version check fix (#1153)
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 d0dd0c3 commit 259059d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: chrisdickinson/setup-yq@latest
- name: check version
run: |
sudo snap install yq
export COMPARISON_BRANCH=${{ github.event.before }}
export COMPARISON_BRANCH=origin/master
git branch -a
make check-version
tag_versions:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
publish-charts:
runs-on: ubuntu-latest
needs: version-check
if: (github.repository_owner == 'onosproject') && (needs.version-check.outputs.valid_version == 'true')
if: (github.repository_owner == 'onosproject')
steps:
- uses: actions/checkout@v4
with:
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.12
version: 0.9.13
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.136
version: 1.4.137
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.12
version: 0.9.13
- name: onos-mho
condition: import.onos-mho.enabled
repository: file://../onos-mho
Expand Down

0 comments on commit 259059d

Please sign in to comment.