-
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
Tanut Lertwarachai
authored and
Tanut Lertwarachai
committed
Jan 24, 2025
1 parent
a4013f8
commit 015299b
Showing
2 changed files
with
33 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# .goreleaser.yml | ||
project_name: falcon | ||
|
||
builds: | ||
- id: linux_amd64 | ||
goos: linux | ||
goarch: amd64 | ||
binary: falcon_linux_amd64 | ||
- id: darwin_amd64 | ||
goos: darwin | ||
goarch: amd64 | ||
binary: falcon_darwin_amd64 | ||
- id: windows_amd64 | ||
goos: windows | ||
goarch: amd64 | ||
binary: falcon_windows_amd64 | ||
|
||
archives: | ||
- id: golang-cross | ||
builds: | ||
- linux-amd64 | ||
- darwin-amd64 | ||
- windows_amd64 | ||
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" | ||
format: tar.gz | ||
wrap_in_directory: true | ||
|
||
release: | ||
github: | ||
token: "{{ .Env.GITHUB_TOKEN }}" | ||
draft: true | ||
prerelease: true |