diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index cfdd047..ca67726 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -16,4 +16,4 @@ jobs: uses: metaborg/actions/.github/workflows/gradle-build-matrix.yaml@main with: gradle-command: | - gradle :convention-plugin:publishToMavenLocal + gradle build diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 1dd5bbc..ec3fcd5 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -11,7 +11,7 @@ jobs: uses: metaborg/actions/.github/workflows/gradle-publish.yaml@main with: gradle-command: | - gradle :convention-plugin:assemble :convention-plugin:publish + gradle assemble publish gradle-version-command: | gradle -q :convention-plugin:printVersion secrets: diff --git a/example/java-example/build.gradle.kts b/example/java-example/build.gradle.kts index 8f8c377..de71a97 100644 --- a/example/java-example/build.gradle.kts +++ b/example/java-example/build.gradle.kts @@ -319,7 +319,4 @@ dependencies { afterEvaluate { // Do not try to publish this project tasks.withType().configureEach { enabled = false } -// tasks.named("checkNotDirty") { enabled = false } -// tasks.named("assertNotDirty") { enabled = false } -// tasks.named("checkSnapshotDependencies") { enabled = false } }