forked from cloudposse/atmos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.draft.yml
More file actions
49 lines (44 loc) · 1.45 KB
/
Copy path.goreleaser.draft.yml
File metadata and controls
49 lines (44 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# 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:
- 'linux'
- 'darwin'
goarch:
- 'amd64'
- 'arm64'
binary: atmos
ldflags:
# Set `atmos` version to the GitHub release tag using Go `ldflags`
# Commit pins the scaffold catalog's distributable templates to this
# release's exact commit.
- '-s -w -X "github.com/cloudposse/atmos/pkg/version.Version={{.Version}}" -X "github.com/cloudposse/atmos/pkg/version.Commit={{.Commit}}"'
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: '{{.Tag}}'
target_commitish: "{{ .Branch }}"
prerelease: auto
## ----- DO NOT CHANGE ----- ##
changelog:
disable: true