Skip to content

Commit 687f351

Browse files
[FSSDK-11076] fix: release tag (#506)
* fix release tag * clean up
1 parent 407ceb6 commit 687f351

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
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 }}

build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
buildscript {
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
}
113113
task 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

0 commit comments

Comments
 (0)