-
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.
Signed-off-by: Paul Meyer <[email protected]>
- Loading branch information
1 parent
ff9d048
commit 138fe0a
Showing
2 changed files
with
54 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
ghh | ||
body.md | ||
metadata.json | ||
|
||
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,52 @@ | ||
# This is an example .goreleaser.yml file with some sensible defaults. | ||
# Make sure to check the documentation at https://goreleaser.com | ||
before: | ||
hooks: | ||
- go mod tidy | ||
- go generate ./... | ||
- govulncheck -v ./... | ||
- actionlint | ||
- golangci-lint run | ||
|
||
builds: | ||
- env: | ||
- CGO_ENABLED=0 | ||
flags: -trimpath | ||
ldflags: -buildid= | ||
goos: | ||
- linux | ||
- darwin | ||
|
||
archives: | ||
- format: tar.gz | ||
rlcp: true | ||
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" | ||
format_overrides: | ||
- goos: windows | ||
format: zip | ||
builds_info: | ||
group: root | ||
owner: root | ||
mode: 0644 | ||
mtime: 1970-01-01T00:00:00.000000001Z | ||
files: | ||
- LICENSE | ||
- README.md | ||
- info: | ||
group: root | ||
owner: root | ||
mode: 0644 | ||
mtime: 1970-01-01T00:00:00.000000001Z | ||
|
||
release: | ||
github: | ||
owner: katexochen | ||
name: ghh | ||
draft: true | ||
replace_existing_draft: true | ||
mode: replace | ||
|
||
changelog: | ||
use: github | ||
sort: asc | ||
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json |