Skip to content

Commit

Permalink
⬆️ 0.4.1
Browse files Browse the repository at this point in the history
- Fixed a bug for Enterprise (#6)
  • Loading branch information
importre committed Feb 17, 2016
1 parent 74bb641 commit 0171195
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'signing'
apply plugin: "com.gradle.plugin-publish"

def GradleGithubPluginGroupId = 'co.riiid'
def GradleGithubPluginVersion = '0.4.0'
def GradleGithubPluginVersion = '0.4.1'
def GradleGithubPluginArtifact = 'gradle-github-plugin'
def GradleGithubPluginUrl = 'https://github.com/riiid/gradle-github-plugin'

Expand Down Expand Up @@ -72,7 +72,7 @@ bintray {
key = project.hasProperty("key") ? project.key : ""
publications = ['GradleGithubPluginPublish']
publish = true
dryRun = true
dryRun = project.hasProperty("dryRun") ? project.dryRun : true

pkg {
repo = 'maven'
Expand Down

0 comments on commit 0171195

Please sign in to comment.