changelog/.goreleaser.yaml

119 lines
3.1 KiB
YAML
Raw Normal View History

before:
hooks:
- go mod tidy
2023-03-18 10:15:40 +05:30
after:
hooks:
- cmd: tar -cJf {{ .ProjectName }}-{{ .Version }}-darwin-amd64.xz {{ .ProjectName }}-{{ .Version }}-darwin-amd64
dir: dist
- cmd: tar -cJf {{ .ProjectName }}-{{ .Version }}-darwin-arm64.xz {{ .ProjectName }}-{{ .Version }}-darwin-arm64
dir: dist
- cmd: tar -cJf {{ .ProjectName }}-{{ .Version }}-linux-arm-7.xz {{ .ProjectName }}-{{ .Version }}-linux-arm-7
dir: dist
- cmd: tar -cJf {{ .ProjectName }}-{{ .Version }}-linux-amd64.xz {{ .ProjectName }}-{{ .Version }}-linux-amd64
dir: dist
- cmd: tar -cJf {{ .ProjectName }}-{{ .Version }}-linux-arm-6.xz {{ .ProjectName }}-{{ .Version }}-linux-arm-6
dir: dist
- cmd: tar -cJf {{ .ProjectName }}-{{ .Version }}-windows-amd64.exe.xz {{ .ProjectName }}-{{ .Version }}-windows-amd64.exe
dir: dist
- cmd: tar -cJf {{ .ProjectName }}-{{ .Version }}-linux-arm64.xz {{ .ProjectName }}-{{ .Version }}-linux-arm64
dir: dist
- cmd: tar -cJf {{ .ProjectName }}-{{ .Version }}-linux-arm-5.xz {{ .ProjectName }}-{{ .Version }}-linux-arm-5
dir: dist
- cmd: tar -cJf {{ .ProjectName }}-{{ .Version }}-windows-arm64.exe.xz {{ .ProjectName }}-{{ .Version }}-windows-arm64.exe
dir: dist
- cmd: tar -cJf {{ .ProjectName }}-{{ .Version }}-freebsd-arm64.xz {{ .ProjectName }}-{{ .Version }}-freebsd-arm64
dir: dist
- cmd: tar -cJf {{ .ProjectName }}-{{ .Version }}-freebsd-amd64.xz {{ .ProjectName }}-{{ .Version }}-freebsd-amd64
dir: dist
builds:
- env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
- freebsd
goarch:
- amd64
- arm
- arm64
# - s390x
# - ppc64le
goarm:
- "5"
- "6"
- "7"
ignore:
- goos: darwin
goarch: arm
- goos: darwin
goarch: ppc64le
- goos: darwin
goarch: s390x
- goos: windows
goarch: ppc64le
- goos: windows
goarch: s390x
- goos: windows
goarch: arm
goarm: "5"
- goos: windows
goarch: arm
goarm: "6"
- goos: windows
goarch: arm
goarm: "7"
- goos: freebsd
goarch: ppc64le
- goos: freebsd
goarch: s390x
- goos: freebsd
goarch: arm
goarm: "5"
- goos: freebsd
goarch: arm
goarm: "6"
- goos: freebsd
goarch: arm
goarm: "7"
flags:
- -trimpath
ldflags:
- -s -w -X code.gitea.io/changelog/cmd.Version={{ .Version }}
binary: >-
{{ .ProjectName }}-
{{- .Version }}-
{{- .Os }}-
{{- if eq .Arch "amd64" }}amd64
{{- else if eq .Arch "amd64_v1" }}amd64
{{- else if eq .Arch "386" }}386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}-{{ .Arm }}{{ end }}
no_unique_dist_dir: true
blobs:
-
provider: s3
bucket: "{{ .Env.S3_BUCKET }}"
region: "{{ .Env.S3_REGION }}"
folder: "changelog-tool/{{.Version}}"
archives:
- format: binary
name_template: "{{ .Binary }}"
allow_different_binary_count: true
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Branch }}-devel"
nightly:
name_template: "{{ .Branch }}"
# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj