-
-
Notifications
You must be signed in to change notification settings - Fork 27
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
Showing
4 changed files
with
51 additions
and
29 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,33 @@ | ||
# .goreleaser.yml | ||
# Build customization | ||
builds: | ||
- binary: stressdisk | ||
goos: | ||
- windows | ||
- darwin | ||
- linux | ||
- freebsd | ||
- netbsd | ||
goarch: | ||
- amd64 | ||
- 386 | ||
- arm | ||
- arm64 | ||
|
||
snapshot: | ||
# Allows you to change the name of the generated snapshot | ||
# releases. The following variables are available: | ||
# - Commit | ||
# - Tag | ||
# - Timestamp | ||
# Default is `SNAPSHOT-{{.Commit}}`. | ||
name_template: "{{.Tag}}-DEV" | ||
|
||
# Archive customization | ||
archive: | ||
format: zip | ||
replacements: | ||
darwin: macOS | ||
files: | ||
- README.md | ||
- COPYING |
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,17 @@ | ||
# Making a release # | ||
|
||
Compile and test | ||
|
||
Then run | ||
|
||
goreleaser --rm-dist --snapshot | ||
|
||
To test the build | ||
|
||
When happy, tag the release | ||
|
||
git tag -a v1.0.XX -m "Release v1.0.XX" | ||
|
||
Then do a release build (set GITHUB token first) | ||
|
||
goreleaser --rm-dist |
This file was deleted.
Oops, something went wrong.