Skip to content

Commit

Permalink
use UNSPECIFIED github token to build locally
Browse files Browse the repository at this point in the history
  • Loading branch information
albertlatacz committed Dec 4, 2016
1 parent 6092051 commit 45a5a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ publishing {
github {
owner = 'albertlatacz'
repo = 'java-repl'
token = System.getenv('GITHUB_TOKEN')
token = System.getenv('GITHUB_TOKEN') == null ? "UNSPECIFIED" : System.getenv('GITHUB_TOKEN')
tagName = projectVersion
targetCommitish = 'master'
assets = [
Expand Down

0 comments on commit 45a5a5a

Please sign in to comment.