We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a1b1c8 commit 3b7bd89Copy full SHA for 3b7bd89
.github/workflows/build.yml
@@ -37,4 +37,4 @@ jobs:
37
MAVEN_SIGNING_PASSPHRASE: ${{ secrets.MAVEN_SIGNING_PASSPHRASE }}
38
MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
39
MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
40
- run: ./gradlew ${{ inputs.action }}
+ run: GITHUB_TAG=${{ inputs.github_tag }} ./gradlew ${{ inputs.action }}
build.gradle
@@ -24,7 +24,7 @@ allprojects {
24
allprojects {
25
group = 'com.optimizely.ab'
26
27
- def travis_defined_version = System.getenv('TRAVIS_TAG')
+ def travis_defined_version = System.getenv('GITHUB_TAG')
28
if (travis_defined_version != null) {
29
version = travis_defined_version
30
}
0 commit comments