Skip to content

Commit

Permalink
Add: more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalholthaus authored Nov 15, 2024
1 parent 37645a2 commit 28d2ef0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/push-compare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ jobs:
echo "Current opensight-postgres version: $t"
# Increment patch level
IFS='.' read -r -a v <<< "$t"
if ! [ -v v[2] ]; then
echo "No patch level found in opensearch-postgres version: $t"
exit 3
fi
patch=$((v[2] + 1))
version="${{ inputs.postgres-major-version }}.$minor.$patch"
else
Expand Down

0 comments on commit 28d2ef0

Please sign in to comment.