Skip to content

Commit 8259b85

Browse files
committed
debugging
1 parent 9d55a00 commit 8259b85

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release-readiness.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ jobs:
4141

4242
# TODO: Change grep pattern when we decouple runtime and codegen releases
4343
- name: Check for smithy-kotlin unreleased changes
44-
shell: bash
4544
run: |
4645
cd aws-sdk-kotlin
4746
SDK_BRANCH=$(git branch --show-current)
@@ -52,11 +51,15 @@ jobs:
5251
echo "smithy-kotlin branch: $SMITHY_KOTLIN_BRANCH"
5352
5453
if [ "$SDK_BRANCH" == "$SMITHY_KOTLIN_BRANCH" ]; then
54+
echo "Branches match"
55+
echo "Cd to sdk"
5556
cd ../aws-sdk-kotlin
57+
echo "fetching origin"
5658
git fetch origin
57-
59+
echo "getting diff"
5860
DIFF=$(git diff origin/main -- gradle/libs.versions.toml)
5961
echo "$DIFF"
62+
echo "getting version bump"
6063
SMITHY_KOTLIN_VERSION_BUMP=$(echo "$DIFF" | grep "smithy-kotlin-runtime-version =\|smithy-kotlin-codegen-version =")
6164
echo "$SMITHY_KOTLIN_VERSION_BUMP"
6265

0 commit comments

Comments
 (0)