We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b3846a commit 3d49ea8Copy full SHA for 3d49ea8
.github/workflows/release-readiness.yml
@@ -15,6 +15,7 @@ jobs:
15
uses: actions/checkout@v4
16
with:
17
path: 'aws-sdk-kotlin'
18
+ ref: '${{ github.head_ref }}'
19
20
# - name: Configure Gradle
21
# uses: awslabs/aws-kotlin-repo-tools/.github/actions/configure-gradle@main
@@ -40,10 +41,11 @@ jobs:
40
41
# TODO: Change grep pattern when we decouple runtime and codegen releases
42
- name: Check for smithy-kotlin unreleased changes
43
run: |
- SDK_BRANCH=${{ github.head_ref }}
44
+ cd aws-sdk-kotlin
45
+ SDK_BRANCH=$(git branch --show-current)
46
echo "aws-sdk-kotlin branch: $SDK_BRANCH"
47
- cd smithy-kotlin
48
+ cd ../smithy-kotlin
49
SMITHY_KOTLIN_BRANCH=$(git branch --show-current)
50
echo "smithy-kotlin branch: $SMITHY_KOTLIN_BRANCH"
51
0 commit comments