Skip to content

Commit

Permalink
Automate uploading of github releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenh committed Jan 5, 2020
1 parent 74adbbc commit c8e4a57
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ plugins {
id "com.google.protobuf" version "0.8.10"
id 'com.github.johnrengelman.shadow' version "5.1.0"
id "com.github.ben-manes.versions" version "0.20.0"
id "com.github.breadmoirai.github-release" version "2.2.10"
}

def grpcVersion = '1.22.1'
Expand Down Expand Up @@ -75,6 +76,13 @@ eclipse {
}
}

githubRelease {
token getProperty('github.token')
owner 'stephenh'
tagName version
releaseAssets.from('build/libs/mirror-all.jar', './mirror')
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand Down

0 comments on commit c8e4a57

Please sign in to comment.