Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
Signed-off-by: jamshale <[email protected]>
  • Loading branch information
jamshale committed May 16, 2024
1 parent fc20ea8 commit f4c4edb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ jobs:
for file in ${get_changed_files}; do
if [[ $file == *"/poetry.lock"* ]] && [[ $file != *"integration/poetry.lock"* ]]; then
for plugin in ${upgraded_plugins}; do
lock_version=$(grep -A1 'name = "aries-cloudagent"' $file | grep -v 'name = "aries-cloudagent"')
lock_version=$(grep -A1 'name = "aries-cloudagent"' "$file" | grep -v 'name = "aries-cloudagent"')
version=$(grep -oP '(?<=").*?(?=")' <<< "$lock_version")
if [[$(sem_version $current_global_version) -ge $(sem_version $version)]]; then
if [[ $(sem_version "$current_global_version") -ge $(sem_version "$version") ]]; then
echo "Upgrade Detected for $plugin in file $file"
found_upgrade=true
fi
Expand Down

0 comments on commit f4c4edb

Please sign in to comment.