-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
41 lines (33 loc) · 746 Bytes
/
.goreleaser.yaml
File metadata and controls
41 lines (33 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# .goreleaser.yaml
# Complete documentation at https://goreleaser.com
version: 2
before:
hooks:
- go mod tidy
# Since this is a library, we don't build binaries.
# We focus on the release notes and source archive.
builds:
- skip: true
archives:
- formats: [tar.gz]
# this name template makes the archive name more standard
name_template: >-
{{ .ProjectName }}_{{ .Version }}_source
checksum:
name_template: 'checksums.txt'
snapshot:
version_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- 'merge'
- 'Merge'
release:
github:
owner: raythurman2386
name: cronlib
# Semantic Versioning is expected
mode: replace