Skip to content
This repository has been archived by the owner on Apr 24, 2022. It is now read-only.

Commit

Permalink
fixed github release dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Jan 31, 2020
1 parent c246fc4 commit d386539
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ publishing {
}
}

afterReleaseBuild.dependsOn = [bintrayUpload,githubRelease]

group = 'com.redislabs'
description = 'Java client for RediSearch based on Lettuce'
sourceCompatibility = '1.8'
Expand All @@ -118,4 +116,7 @@ githubRelease {
token = project.hasProperty('githubToken') ? project.property('githubToken') : System.getenv('GITHUB_TOKEN')
owner "RediSearch"
repo "lettusearch"
}
}

afterReleaseBuild.dependsOn ":githubRelease"
afterReleaseBuild.dependsOn bintrayUpload

0 comments on commit d386539

Please sign in to comment.