-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding dist to gitignore * initial version of gorelease configuration
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
dist |
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,35 @@ | ||
builds: | ||
- binary: elblobcat | ||
goos: | ||
- darwin | ||
- linux | ||
goarch: | ||
- amd64 | ||
- arm | ||
- arm64 | ||
goarm: | ||
- 6 | ||
- 7 | ||
env: | ||
- CGO_ENANBLED=0 | ||
sign: | ||
artifacts: checksum | ||
args: ["-u", "[email protected]", "--output", "${signature}", "--detach-sign", "${artifact}"] | ||
|
||
snapshot: | ||
# Allows you to change the name of the generated snapshot | ||
# Default is `SNAPSHOT-{{.ShortCommit}}`. | ||
name_template: SNAPSHOT-{{.Commit}} | ||
|
||
checksum: | ||
# You can change the name of the checksums file. | ||
# Default is `{{ .ProjectName }}_{{ .Version }}_checksums.txt`. | ||
name_template: "{{ .ProjectName }}_checksums.txt" | ||
|
||
# Algorithm to be used. | ||
# Accepted options are sha256, sha512, sha1, crc32, md5, sha224 and sha384. | ||
# Default is sha256. | ||
algorithm: sha256 | ||
|
||
release: | ||
prerelease: auto |