File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 39
39
MAVEN_SIGNING_PASSPHRASE : ${{ secrets.MAVEN_SIGNING_PASSPHRASE }}
40
40
MAVEN_CENTRAL_USERNAME : ${{ secrets.MAVEN_CENTRAL_USERNAME }}
41
41
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 19
19
buildscript {
20
20
ext. kotlin_version = ' 1.7.0'
21
21
22
- ext. version_name = System . getenv(' TRAVIS_TAG ' )
22
+ ext. version_name = System . getenv(' GITHUB_TAG ' )
23
23
if (version_name == null || version_name. isEmpty()) {
24
24
ext. version_name = ' debugVersion'
25
25
}
@@ -111,7 +111,7 @@ task testAllModules () {
111
111
)
112
112
}
113
113
task testODPModule () {
114
- logger. info(" Running android tests for Travis " )
114
+ logger. info(" Running android tests for ODP " )
115
115
dependsOn(' :android-sdk:connectedAndroidTest' , ' :android-sdk:test' ,)
116
116
}
117
117
@@ -236,7 +236,6 @@ configure(publishedProjects) {
236
236
}
237
237
238
238
signing {
239
- // base64 for workaround travis escape chars issue
240
239
def signingKeyBase64 = System . getenv(' MAVEN_SIGNING_KEY_BASE64' )
241
240
// skip signing for "local" version into MavenLocal
242
241
if (! signingKeyBase64?. trim()) return
You can’t perform that action at this time.
0 commit comments