forked from distribworks/dkron
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Victor Castell
committed
Dec 10, 2015
1 parent
223e607
commit e6a3f55
Showing
3 changed files
with
28 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,24 @@ | |
"xc", | ||
"archive-zip", | ||
"archive-tar-gz", | ||
"deb", | ||
"publish-github" | ||
"deb", | ||
"publish-github" | ||
], | ||
"BuildConstraints": "linux,amd64 windows,amd64 darwin,amd64", | ||
"ResourcesInclude": "INSTALL*,README*,LICENSE*,config/*,static/*,templates/*", | ||
"PackageVersion": "0.5.5", | ||
"PackageVersion": "0.6.0", | ||
"TaskSettings": { | ||
"deb": { | ||
"metadata": { | ||
"description": "Distributed, fault tolerant job scheduling system", | ||
"maintainer": "Victor Castell (https://github.com/victorcoder) \u003c[email protected]\u003e" | ||
}, | ||
"other-mapped-files": { | ||
"/": "debian/", | ||
"/usr/share/dkron/static": "static/", | ||
"/usr/share/dkron/templates": "templates/" | ||
} | ||
}, | ||
"publish-github": { | ||
"apikey": "", | ||
"body": "See: https://github.com/victorcoder/dkron/blob/master/CHANGELOG.md", | ||
|
@@ -21,18 +32,7 @@ | |
"owner": "victorcoder", | ||
"prerelease": true, | ||
"repository": "dkron" | ||
}, | ||
"deb": { | ||
"metadata": { | ||
"description": "Distributed, fault tolerant job scheduling system", | ||
"maintainer": "Victor Castell (https://github.com/victorcoder) <[email protected]>" | ||
}, | ||
"other-mapped-files": { | ||
"/": "debian/", | ||
"/usr/share/dkron/static": "static/", | ||
"/usr/share/dkron/templates": "templates/" | ||
} | ||
} | ||
} | ||
}, | ||
"ConfigVersion": "0.9", | ||
"Env": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ import ( | |
) | ||
|
||
const ( | ||
VERSION = "0.5.5" | ||
VERSION = "0.6.0" | ||
) | ||
|
||
func main() { | ||
|