refactor: drop comments, add header [ci skip]

This commit is contained in:
decentral1se 2021-09-07 07:16:48 +02:00
parent 96cfd8da2b
commit 160ccf9745
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 4 additions and 11 deletions

View File

@ -1,14 +1,11 @@
# This is an example .goreleaser.yml file with some sane defaults. ---
# Make sure to check the documentation at http://goreleaser.com
gitea_urls: gitea_urls:
api: https://git.coopcloud.tech/api/v1 api: https://git.coopcloud.tech/api/v1
download: https://git.coopcloud.tech/ download: https://git.coopcloud.tech/
skip_tls_verify: false skip_tls_verify: false
before: before:
hooks: hooks:
# You may remove this if you don't use go modules.
- go mod tidy - go mod tidy
# you may remove this if you don't need go generate
- go generate ./... - go generate ./...
builds: builds:
- env: - env:
@ -16,22 +13,18 @@ builds:
dir: cmd/abra dir: cmd/abra
goos: goos:
- linux - linux
# - windows
# - darwin
archives: archives:
- replacements: - replacements:
linux: Linux linux: Linux
# darwin: Darwin
# windows: Windows
386: i386 386: i386
amd64: x86_64 amd64: x86_64
checksum: checksum:
name_template: 'checksums.txt' name_template: "checksums.txt"
snapshot: snapshot:
name_template: "{{ incpatch .Version }}-next" name_template: "{{ incpatch .Version }}-next"
changelog: changelog:
sort: asc sort: asc
filters: filters:
exclude: exclude:
- '^docs:' - "^docs:"
- '^test:' - "^test:"