-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing Deployment to Maven-Central in GitHub Actions (#1055)
* Pass currentVersion to deployment * Adapted branchName.gradle * Fixed BranchName * Empty Line.. * Added gpg signing * Added some steps to deployment * Changed Signing * Test * Using gpg Agent in build.gradle * debug * Prototype * CHANGELOG.md * added sign * added sign * syn * Debugging Deployment * Debugging Deployment * Debugging Deployment * Debugging Deployment * Debugging Deployment * InMemoryPGP * spotless * changed to ENV variables * Changed property names to ENVs * ORG_GRADLE_PROJECT * debug * spotless * removed KeyID * Prototype * FINAL(LY)! :D * FINAL(LY) for real! :D
- Loading branch information
1 parent
25122e2
commit caeaad0
Showing
6 changed files
with
30 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
// tasks for semantic versioning using semver-gradle https://github.com/ethauvin/semver-gradle | ||
|
||
task currentVersion { | ||
doFirst{ | ||
tasks.register('currentVersion') { | ||
doFirst { | ||
println semver.semver | ||
} | ||
} | ||
|
||
task devVersion { | ||
doFirst{ | ||
tasks.register('devVersion') { | ||
doFirst { | ||
println "${semver.major}.${semver.minor}-SNAPSHOT" | ||
} | ||
} |