We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8b5d15 commit 8437b91Copy full SHA for 8437b91
.gitignore
@@ -3,3 +3,5 @@
3
TODO.md
4
gh-md-toc
5
build
6
+
7
+dist/
.goreleaser.yaml
@@ -0,0 +1,29 @@
1
+project_name: gh-md-toc
2
+before:
+ hooks:
+ # You may remove this if you don't use go modules.
+ - go mod tidy
+builds:
+ - env:
8
+ - CGO_ENABLED=0
9
+ main: ./cmd/gh-md-toc
10
+ goos:
11
+ - linux
12
+ - windows
13
+ - darwin
14
+ goarch:
15
+ - amd64
16
+checksum:
17
+ name_template: 'checksums.txt'
18
+snapshot:
19
+ name_template: "{{ .Tag }}-next"
20
+changelog:
21
+ sort: asc
22
+ filters:
23
+ exclude:
24
+ - '^docs:'
25
+ - '^test:'
26
+ - '^Makefile:'
27
+ - '^README:'
28
+ - '^gitignore:'
29
+ - '^goreleaser:'
0 commit comments