Skip to content

Commit

Permalink
ci: chasing gradle not getting env variable values
Browse files Browse the repository at this point in the history
  • Loading branch information
mariogarcia committed Dec 6, 2022
1 parent 8e82aaa commit aa3df0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/gql-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'])
}

0 comments on commit aa3df0b

Please sign in to comment.