-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(+semver: fix) Add debian distribution packages (#8)
Signed-off-by: Joshua Benjamin <[email protected]>
- Loading branch information
1 parent
3bd8218
commit d2b2437
Showing
5 changed files
with
69 additions
and
2 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
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Package: gogitver | ||
Version: ${VERSION} | ||
Maintainer: Joshua Benjamin <[email protected]> | ||
Architecture: amd64 | ||
Description: gogitver is a tool to determine the semantic version of a project based on keywords used in the commit history. |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: gogitver | ||
version: '${VERSION}' | ||
summary: Provides semantic versioning through git history | ||
description: | | ||
gogitver is a tool to determine the semantic version of a | ||
project based on keywords used in the commit history. gogitver | ||
draws a lot of inspiration from GitVersion but with the benefit | ||
of go's single binary executable. With the work done by go-git | ||
the binary produced can run on Linux, Windows, and Mac. | ||
grade: stable | ||
confinement: strict | ||
|
||
architectures: | ||
- build-on: amd64 | ||
|
||
parts: | ||
gogitver: | ||
source: ./source | ||
plugin: dump | ||
|
||
apps: | ||
gogitver: | ||
command: gogitver | ||
plugs: [home] |