ci: Update goreleaser config

This commit is contained in:
xvlcwk
2025-03-18 21:03:26 +01:00
committed by chris
parent 1067f4a4b5
commit e553ae9bcb

View File

@@ -1,10 +1,14 @@
# Visit https://goreleaser.com for documentation on how to customize this
# behavior.
version: 2
before: before:
hooks: hooks:
# this is just an example and not a requirement for provider building/publishing
- go mod tidy - go mod tidy
builds: builds:
- env: - env:
# goreleaser does not work with CGO, it could also complicate # goreleaser does not work with CGO, it could also complicate
# usage by users in CI/CD systems like Terraform Cloud where # usage by users in CI/CD systems like HCP Terraform where
# they are unable to install libraries. # they are unable to install libraries.
- CGO_ENABLED=0 - CGO_ENABLED=0
mod_timestamp: '{{ .CommitTimestamp }}' mod_timestamp: '{{ .CommitTimestamp }}'
@@ -13,6 +17,7 @@ builds:
ldflags: ldflags:
- '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}}' - '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}}'
goos: goos:
- freebsd
- windows - windows
- linux - linux
- darwin - darwin
@@ -24,21 +29,21 @@ builds:
ignore: ignore:
- goos: darwin - goos: darwin
goarch: '386' goarch: '386'
- goos: windows
goarch: arm64
- goos: windows
goarch: arm
binary: '{{ .ProjectName }}_v{{ .Version }}' binary: '{{ .ProjectName }}_v{{ .Version }}'
archives: archives:
- id: zip - format: zip
format: zip
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}' name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
checksum: checksum:
extra_files:
- glob: 'terraform-registry-manifest.json'
name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json'
name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS' name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS'
algorithm: sha256 algorithm: sha256
signs: signs:
- artifacts: checksum - artifacts: checksum
args: args:
# if you are using this in a GitHub action or some other automated pipeline, you
# need to pass the batch flag to indicate its not interactive.
- "--batch" - "--batch"
- "--local-user" - "--local-user"
- "{{ .Env.GPG_FINGERPRINT }}" # set this environment variable for your signing key - "{{ .Env.GPG_FINGERPRINT }}" # set this environment variable for your signing key
@@ -47,4 +52,10 @@ signs:
- "--detach-sign" - "--detach-sign"
- "${artifact}" - "${artifact}"
release: release:
draft: false extra_files:
- glob: 'terraform-registry-manifest.json'
name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json'
# If you want to manually examine the release before its live, uncomment this line:
# draft: true
changelog:
disable: true