gpaste/.goreleaser.yaml

71 lines
1.6 KiB
YAML
Raw Permalink Normal View History

2022-01-15 18:07:33 +00:00
# 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 ./...
2022-01-24 19:43:07 +00:00
2022-01-15 18:07:33 +00:00
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
2022-01-24 19:43:07 +00:00
2022-01-15 18:07:33 +00:00
archives:
- format_overrides:
- goos: windows
format: zip
2022-01-24 19:43:07 +00:00
2022-01-15 18:07:33 +00:00
checksum:
name_template: 'checksums.txt'
2022-01-24 19:43:07 +00:00
2022-01-15 18:07:33 +00:00
snapshot:
name_template: "{{ incpatch .Version }}-next"
2022-01-24 19:43:07 +00:00
2022-01-15 18:07:33 +00:00
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
2022-01-24 19:43:07 +00:00
scoop:
# Default for gitea is "https://gitea.com/<repo_owner>/<repo_name>/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
url_template: "https://git.t-juice.club/torjus/scoop-tjuice/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
bucket:
owner: torjus
name: scoop-tjuice
branch: master
commit_author:
name: ci.t-juice.club
email: ci@t-juice.club
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "https://git.t-juice.club/torjus/gpaste"
description: "Simple pastebin-style thingie."
2022-01-15 18:07:33 +00:00
gitea_urls:
api: https://git.t-juice.club/api/v1/
download: https://git.t-juice.club
2022-01-24 19:43:07 +00:00
2022-01-15 18:07:33 +00:00
env_files:
gitea_token: gitea_token