Skip to content

Commit 4b3846a

Browse files
committed
debugging
1 parent 2a01d8e commit 4b3846a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release-readiness.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
- name: Check for smithy-kotlin unreleased changes
4242
run: |
4343
SDK_BRANCH=${{ github.head_ref }}
44-
echo $SDK_BRANCH
44+
echo "aws-sdk-kotlin branch: $SDK_BRANCH"
4545
46-
cd ../smithy-kotlin
47-
SMITHY_BRANCH=$(git branch --show-current)
48-
echo $SMITHY_BRANCH
46+
cd smithy-kotlin
47+
SMITHY_KOTLIN_BRANCH=$(git branch --show-current)
48+
echo "smithy-kotlin branch: $SMITHY_KOTLIN_BRANCH"
4949
50-
if [ "$SDK_BRANCH" == "$SMITHY_BRANCH" ]; then
50+
if [ "$SDK_BRANCH" == "$SMITHY_KOTLIN_BRANCH" ]; then
5151
cd ../aws-sdk-kotlin
5252
git diff origin/main -- gradle/libs.versions.toml | grep -E "smithy-kotlin-runtime-version|smithy-kotlin-codegen-version"
5353
export SMITHY_KOTLIN_VERSION_BUMP=$($?)

0 commit comments

Comments
 (0)