File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 55
55
56
56
- name : " Ensure current snapshot version matches release version"
57
57
run : |
58
- grep -q "version = '${{ env.RELEASE_VERSION_WITHOUT_SUFFIX }}-SNAPSHOT'" build.gradle
58
+ grep -q "version = '${{ env.RELEASE_VERSION_WITHOUT_SUFFIX }}-SNAPSHOT'" build.gradle.kts
59
59
if [[ $? != 0 ]]; then
60
- echo '❌ Release failed: version in build.gradle is not a snapshot for release version ${{ inputs.version }}' >> $GITHUB_STEP_SUMMARY
60
+ echo '❌ Release failed: version in build.gradle.kts is not a snapshot for release version ${{ inputs.version }}' >> $GITHUB_STEP_SUMMARY
61
61
exit 1
62
62
fi
63
63
@@ -110,7 +110,7 @@ jobs:
110
110
git push origin ${{ github.ref_name }}
111
111
git checkout ${{ env.RELEASE_BRANCH }}
112
112
113
- # This step bumps version numbers in build.gradle and creates git artifacts for the release
113
+ # This step bumps version numbers in build.gradle.kts and creates git artifacts for the release
114
114
- name : " Bump version numbers and create release tag"
115
115
run : .github/workflows/bump-and-tag.sh "${{ env.RELEASE_VERSION_WITHOUT_SUFFIX }}" "${{ env.RELEASE_VERSION }}" "${{ env.NEXT_VERSION }}"
116
116
You can’t perform that action at this time.
0 commit comments