diff --git a/.github/workflows/gql-release.yml b/.github/workflows/gql-release.yml index d4fdc64..f4daf29 100644 --- a/.github/workflows/gql-release.yml +++ b/.github/workflows/gql-release.yml @@ -21,7 +21,5 @@ jobs: - uses: actions/setup-java@v1 with: java-version: '11' - - name: build - run: ./gradlew build -x aggregateCodenarc - name: release - run: ./gradlew clean build release -x aggregateCodenarc -x aggregateGroovydoc + run: ./gradlew build release -x aggregateCodenarc -x aggregateGroovydoc diff --git a/build.gradle b/build.gradle index 2980bc8..1c23670 100644 --- a/build.gradle +++ b/build.gradle @@ -165,5 +165,5 @@ subprojects { task release() { dependsOn(version.endsWith('SNAPSHOT') ? [':gql-core:publishAllPublicationsToSnapshotsRepository', ':gql-ratpack:publishAllPublicationsToSnapshotsRepository', 'jreleaserRelease'] - : [':gql-core:publish', 'gql-ratpack:publish', ':guide:gitPublishPush']) + : [':gql-core:publish', 'gql-ratpack:publish', ':guide:gitPublishPush', 'jreleaserFullRelease']) }