|
1 | 1 | # Visit https://goreleaser.com for documentation on how to customize this
|
2 | 2 | # behavior.
|
| 3 | +version: 2 |
| 4 | + |
3 | 5 | before:
|
4 | 6 | hooks:
|
5 | 7 | # this is just an example and not a requirement for provider building/publishing
|
6 | 8 | - go mod tidy
|
| 9 | + |
7 | 10 | builds:
|
8 |
| -- env: |
| 11 | + - env: |
9 | 12 | # goreleaser does not work with CGO, it could also complicate
|
10 | 13 | # usage by users in CI/CD systems like Terraform Cloud where
|
11 | 14 | # they are unable to install libraries.
|
12 |
| - - CGO_ENABLED=0 |
13 |
| - mod_timestamp: '{{ .CommitTimestamp }}' |
14 |
| - flags: |
15 |
| - - -trimpath |
16 |
| - ldflags: |
17 |
| - - '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}}' |
18 |
| - goos: |
19 |
| - - freebsd |
20 |
| - - windows |
21 |
| - - linux |
22 |
| - - darwin |
23 |
| - goarch: |
24 |
| - - amd64 |
25 |
| - - '386' |
26 |
| - - arm |
27 |
| - - arm64 |
28 |
| - ignore: |
29 |
| - - goos: darwin |
30 |
| - goarch: '386' |
31 |
| - binary: '{{ .ProjectName }}_v{{ .Version }}' |
| 15 | + - CGO_ENABLED=0 |
| 16 | + mod_timestamp: '{{ .CommitTimestamp }}' |
| 17 | + flags: |
| 18 | + - -trimpath |
| 19 | + ldflags: |
| 20 | + - '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}}' |
| 21 | + goos: |
| 22 | + - freebsd |
| 23 | + - windows |
| 24 | + - linux |
| 25 | + - darwin |
| 26 | + goarch: |
| 27 | + - amd64 |
| 28 | + - '386' |
| 29 | + - arm |
| 30 | + - arm64 |
| 31 | + ignore: |
| 32 | + - goos: darwin |
| 33 | + goarch: '386' |
| 34 | + binary: '{{ .ProjectName }}_v{{ .Version }}' |
| 35 | + |
32 | 36 | archives:
|
33 |
| -- format: zip |
34 |
| - name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}' |
| 37 | + - format: zip |
| 38 | + name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}' |
| 39 | + |
35 | 40 | checksum:
|
| 41 | + name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS' |
| 42 | + algorithm: sha256 |
36 | 43 | extra_files:
|
37 | 44 | - glob: 'terraform-registry-manifest.json'
|
38 | 45 | name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json'
|
39 |
| - name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS' |
40 |
| - algorithm: sha256 |
| 46 | + |
41 | 47 | signs:
|
42 | 48 | - artifacts: checksum
|
43 | 49 | args:
|
44 |
| - # if you are using this in a GitHub action or some other automated pipeline, you |
45 |
| - # need to pass the batch flag to indicate its not interactive. |
46 | 50 | - "--batch"
|
47 | 51 | - "--local-user"
|
48 |
| - - "{{ .Env.GPG_FINGERPRINT }}" # set this environment variable for your signing key |
| 52 | + - "{{ .Env.GPG_FINGERPRINT }}" # Set this env variable for your signing key |
49 | 53 | - "--output"
|
50 | 54 | - "${signature}"
|
51 | 55 | - "--detach-sign"
|
52 | 56 | - "${artifact}"
|
| 57 | + |
53 | 58 | release:
|
54 | 59 | mode: append
|
55 |
| - # Header for the release body. |
56 | 60 | header: |
|
57 | 61 | ## {{ .Version }} ({{ .Date }})
|
58 |
| -
|
59 | 62 | extra_files:
|
60 | 63 | - glob: 'terraform-registry-manifest.json'
|
61 | 64 | name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json'
|
62 |
| - # If you want to manually examine the release before its live, uncomment this line: |
| 65 | + # If you want to manually examine the release before it goes live, uncomment the line below: |
63 | 66 | # draft: true
|
| 67 | + |
64 | 68 | changelog:
|
65 | 69 | skip: false
|
0 commit comments