# This is an example .goreleaser.yml file with some sensible defaults. # Make sure to check the documentation at https://goreleaser.com before: hooks: # You may remove this if you don't use go modules. - go mod tidy # you may remove this if you don't need go generate - go generate ./... builds: - id: "gpaste-client" binary: "gpaste" env: - CGO_ENABLED=0 goos: - linux - windows goarch: - amd64 main: ./cmd/client/client.go - id: "gpaste-server" binary: "gpaste-server" env: - CGO_ENABLED=0 goos: - linux - windows goarch: - amd64 main: ./cmd/server/server.go archives: - format_overrides: - goos: windows format: zip checksum: name_template: 'checksums.txt' snapshot: name_template: "{{ incpatch .Version }}-next" changelog: sort: asc filters: exclude: - '^docs:' - '^test:' gitea_urls: api: https://git.t-juice.club/api/v1/ download: https://git.t-juice.club env_files: gitea_token: gitea_token