Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: DanySK/build-check-deploy-gradle-action@3.7.0
with:
deploy-command: >-
./gradlew uploadJava close dropStagingRepositoryOnMavenCentral --parallel
./gradlew uploadAll closeStaging dropStagingRepositoryOnMavenCentral --parallel
codecov-token: ${{ secrets.CODECOV_TOKEN }}
should-run-codecov: ${{ runner.os == 'Linux' }}
should-deploy: >-
Expand Down
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ tasks.withType<Checkstyle>().configureEach {

group = "org.danilopianini"
publishOnCentral {
projectDescription.set("Java spatial indexing tools")
projectLongName.set("Java QuadTree")
repoOwner = "DanySK"
projectDescription = "Java spatial indexing tools"
projectLongName = "Java QuadTree"
}

if (System.getenv("CI") == true.toString()) {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ spotbugs-annotations = "com.github.spotbugs:spotbugs-annotations:4.8.6"
gitSemVer = "org.danilopianini.git-sensitive-semantic-versioning-gradle-plugin:3.1.7"
java-qa = "org.danilopianini.gradle-java-qa:1.84.0"
multiJvmTesting = "org.danilopianini.multi-jvm-test-plugin:3.1.2"
publishOnCentral = "org.danilopianini.publish-on-central:7.0.4"
publishOnCentral = "org.danilopianini.publish-on-central:8.0.1"
taskTree = "com.dorongold.task-tree:4.0.0"
2 changes: 1 addition & 1 deletion release.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const publishCmd = `
git tag -a -f \${nextRelease.version} \${nextRelease.version} -F CHANGELOG.md
./gradlew uploadJava releaseStagingRepositoryOnMavenCentral --parallel || exit 1
./gradlew uploadAll releaseStagingRepositoryOnMavenCentral --parallel || exit 1
git push --force origin \${nextRelease.version}
`
import config from 'semantic-release-preconfigured-conventional-commits' with { type: "json" };
Expand Down