this repo has no description
1version: 2
2
3project_name: nox
4
5builds:
6 - id: nox
7 main: ./cmd/nox
8 binary: nox
9 goos:
10 - linux
11 - darwin
12 goarch:
13 - amd64
14 - arm64
15 env:
16 - CGO_ENABLED=0
17 ldflags:
18 - -s -w
19 - -X github.com/aottr/nox/internal/version.Version={{.Version}}
20 - -X github.com/aottr/nox/internal/version.Commit={{.Commit}}
21 - -X github.com/aottr/nox/internal/version.BuildDate={{.Date}}
22
23archives:
24 - id: default
25 files:
26 - README.md
27 - LICENSE
28
29changelog:
30 sort: asc
31 filters:
32 exclude:
33 - "^docs:"
34 - "^test:"
35
36release:
37 github:
38 owner: aottr
39 name: nox
40