File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 3939 MAVEN_SIGNING_PASSPHRASE : ${{ secrets.MAVEN_SIGNING_PASSPHRASE }}
4040 MAVEN_CENTRAL_USERNAME : ${{ secrets.MAVEN_CENTRAL_USERNAME }}
4141 MAVEN_CENTRAL_PASSWORD : ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
42- run : github_tag =${{ inputs.github_tag }} ./gradlew ${{ inputs.action }}
42+ run : GITHUB_TAG =${{ inputs.github_tag }} ./gradlew ${{ inputs.action }}
Original file line number Diff line number Diff line change 1919buildscript {
2020 ext. kotlin_version = ' 1.7.0'
2121
22- ext. version_name = System . getenv(' TRAVIS_TAG ' )
22+ ext. version_name = System . getenv(' GITHUB_TAG ' )
2323 if (version_name == null || version_name. isEmpty()) {
2424 ext. version_name = ' debugVersion'
2525 }
@@ -111,7 +111,7 @@ task testAllModules () {
111111 )
112112}
113113task testODPModule () {
114- logger. info(" Running android tests for Travis " )
114+ logger. info(" Running android tests for ODP " )
115115 dependsOn(' :android-sdk:connectedAndroidTest' , ' :android-sdk:test' ,)
116116}
117117
@@ -236,7 +236,6 @@ configure(publishedProjects) {
236236 }
237237
238238 signing {
239- // base64 for workaround travis escape chars issue
240239 def signingKeyBase64 = System . getenv(' MAVEN_SIGNING_KEY_BASE64' )
241240 // skip signing for "local" version into MavenLocal
242241 if (! signingKeyBase64?. trim()) return
You can’t perform that action at this time.
0 commit comments