version: 2 project_name: golang-template gitea_urls: api: https://git.dcentral.systems/api/v1 download: https://git.dcentral.systems # set to true if you use a self-signed certificate skip_tls_verify: false before: hooks: - go mod tidy builds: - id: app env: - CGO_ENABLED=0 main: ./cmd/app binary: app goos: - linux - windows - darwin goarch: - amd64 - arm64 archives: - format: tar.gz name_template: >- {{ .ProjectName }}_ {{- title .Os }}_ {{- if eq .Arch "amd64" }}x86_64 {{- else if eq .Arch "386" }}i386 {{- else }}{{ .Arch }}{{ end }} {{- if .Arm }}v{{ .Arm }}{{ end }} format_overrides: - goos: windows format: zip checksum: name_template: 'checksums.txt' snapshot: version_template: "{{ incpatch .Version }}-next" changelog: sort: asc filters: exclude: - '^docs:' - '^test:'