Skip to content

Commit b17082f

Browse files
committed
debugging
1 parent c393b39 commit b17082f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-readiness.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ jobs:
5454
cd ../aws-sdk-kotlin
5555
git fetch origin
5656
57-
LIBS_DIFF=$(git diff origin/main -- gradle/libs.versions.toml)
58-
if [ -z "$LIBS_DIFF" ]; then
57+
DIFF=$(git diff origin/main --unified=0 -- gradle/libs.versions.toml)
58+
if [ -z "$DIFF" ]; then
5959
echo "::error::Matching smithy-kotlin and aws-sdk-kotlin branches but no smithy-kotlin version bump"
6060
exit 1
6161
fi
6262
6363
echo "getting version bump"
64-
SMITHY_KOTLIN_VERSION_BUMP=$(echo "$LIBS_DIFF" | grep "smithy-kotlin-runtime-version =\|smithy-kotlin-codegen-version =")
64+
SMITHY_KOTLIN_VERSION_BUMP=$(echo "$DIFF" | grep "smithy-kotlin-runtime-version =\|smithy-kotlin-codegen-version =")
6565
echo "$SMITHY_KOTLIN_VERSION_BUMP"
6666
6767
if [ -z "$SMITHY_KOTLIN_VERSION_BUMP" ]; then

0 commit comments

Comments
 (0)