-
-
Notifications
You must be signed in to change notification settings - Fork 111
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
1 changed file
with
50 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,50 @@ | ||
# Visit https://goreleaser.com for documentation on how to customize this behavior. | ||
|
||
#before: | ||
# hooks: | ||
# - 'go mod tidy' | ||
builds: | ||
- env: | ||
# goreleaser does not work with CGO, it could also complicate | ||
# usage by users in CI/CD systems like Terraform Cloud where | ||
# they are unable to install libraries. | ||
- CGO_ENABLED=0 | ||
mod_timestamp: '{{ .CommitTimestamp }}' | ||
goos: | ||
- darwin | ||
- freebsd | ||
- windows | ||
- linux | ||
goarch: | ||
- amd64 | ||
- '386' | ||
- arm | ||
- arm64 | ||
binary: atmos | ||
ldflags: | ||
# Set `atmos` version to the GitHub release tag using Go `ldflags` | ||
- '-s -w -X "github.com/cloudposse/atmos/cmd.Version={{.Version}}"' | ||
|
||
archives: | ||
- format: binary | ||
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}' | ||
|
||
checksum: | ||
name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS' | ||
algorithm: sha256 | ||
|
||
## Copied from https://github.com/cloudposse/.github/blob/main/.github/goreleaser.yml | ||
## Required to correct working go auto release workflow | ||
## ----- DO NOT CHANGE ----- ## | ||
release: | ||
draft: true | ||
replace_existing_draft: true | ||
replace_existing_artifacts: true | ||
mode: keep-existing | ||
make_latest: false | ||
name_template: 'v{{.Tag}}' | ||
target_commitish: "{{ .Branch }}" | ||
## ----- DO NOT CHANGE ----- ## | ||
|
||
changelog: | ||
disable: true |