Files
detekt/scripts/release.sh
Artur Bosch 8513ed6fb1 Prepare 1.15.0 rc2 (#3286)
* Prepare 1.15.0-RC2 release

* Include exit guards when one release step finishes with exit code != 0

* Update self analysis version

* Upload formatting jar to github
2020-12-14 18:27:31 +01:00

9 lines
358 B
Bash
Executable File

#!/usr/bin/env sh
gradle build publishToMavenLocal -x detekt -x test || exit
gradle build || exit
gradle publishAllPublicationsToMavenCentralRepository --max-workers 1 || exit
gradle publishPlugins -DautomatePublishing=true || exit
gradle githubRelease || exit
gradle applyDocVersion applySelfAnalysisVersion || exit
gradle closeAndReleaseRepository || exit