File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 2626 run : |
2727 echo "Create GPG private key"
2828 echo $GPG_KEY_ARMOR | base64 --decode > $GITHUB_WORKSPACE/secring.gpg
29- ./gradlew publishToSonatype closeAndReleaseStagingRepository -POSSRH_USERNAME=${OSSRH_USERNAME} -POSSRH_PASSWORD=${OSSRH_PASSWORD} -POSSRH_STAGING_PROFILE_ID=${OSSRH_STAGING_PROFILE_ID} -Psigning.keyId=${GPG_KEY_ID} -Psigning.password=${GPG_PASSPHRASE} -Psigning.secretKeyRingFile=${GITHUB_WORKSPACE}/secring.gpg -S --no-daemon
29+ ./gradlew publishToSonatype closeAndReleaseStagingRepository -Pversion=${GITHUB_REF/refs\/tags\/v/} - POSSRH_USERNAME=${OSSRH_USERNAME} -POSSRH_PASSWORD=${OSSRH_PASSWORD} -POSSRH_STAGING_PROFILE_ID=${OSSRH_STAGING_PROFILE_ID} -Psigning.keyId=${GPG_KEY_ID} -Psigning.password=${GPG_PASSPHRASE} -Psigning.secretKeyRingFile=${GITHUB_WORKSPACE}/secring.gpg -S --no-daemon
3030 env :
3131 GPG_KEY_ARMOR : ${{ secrets.GPG_KEY_ARMOR }}
3232 GPG_KEY_ID : ${{ secrets.GPG_KEY_ID }}
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ The best practise of using Booster is integrating the specific module to solve t
7474
7575``` groovy
7676buildscript {
77- ext.booster_version = '4.3 .0'
77+ ext.booster_version = '4.4 .0'
7878 repositories {
7979 google()
8080 mavenCentral()
@@ -122,7 +122,7 @@ The `plugins` DSL also supported since Booster *3.0.0*
122122
123123``` groovy
124124plugins {
125- id 'com.didiglobal.booster' version '4.3 .0'
125+ id 'com.didiglobal.booster' version '4.4 .0'
126126}
127127```
128128
Original file line number Diff line number Diff line change 1+ ## v4.4.0
2+
3+ - Support force update inputs for incremental build
4+
15## v4.3.0
26
37- Support running local unit test with transformer
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ allprojects { project ->
3131 apply plugin : ' maven-publish'
3232
3333 group = ' com.didiglobal.booster'
34- version = ' 4.3.0 '
34+ version = findProperty( ' version ' ) ?: ' 1.0.0-SNAPSHOT '
3535
3636 repositories {
3737 mavenLocal()
You can’t perform that action at this time.
0 commit comments