File tree Expand file tree Collapse file tree 7 files changed +344
-65
lines changed Expand file tree Collapse file tree 7 files changed +344
-65
lines changed Original file line number Diff line number Diff line change 3838 env :
3939 # GitHub sets the GITHUB_TOKEN secret automatically.
4040 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
41- GPG_FINGERPRINT : ${{ steps.import_gpg.outputs.fingerprint }}
41+ GPG_FINGERPRINT : ${{ steps.import_gpg.outputs.fingerprint }}
42+ GPG_TTY : $(tty)
Original file line number Diff line number Diff line change @@ -33,7 +33,9 @@ archives:
3333- format : zip
3434 name_template : ' {{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
3535checksum :
36- extra_files : []
36+ extra_files :
37+ - glob : ' integration-manifest.json'
38+ name_template : ' {{ .ProjectName }}_{{ .Version }}_manifest.json'
3739 name_template : ' {{ .ProjectName }}_{{ .Version }}_SHA256SUMS'
3840 algorithm : sha256
3941signs :
@@ -49,8 +51,35 @@ signs:
4951 - " --detach-sign"
5052 - " ${artifact}"
5153release :
52- extra_files : []
54+ extra_files :
55+ - glob : ' integration-manifest.json'
56+ name_template : ' {{ .ProjectName }}_{{ .Version }}_manifest.json'
5357 # If you want to manually examine the release before its live, uncomment this line:
54- draft : true
58+ # draft: true
5559changelog :
56- skip : true
60+ sort : asc
61+ use : github
62+ filters :
63+ exclude :
64+ - ' ^test:'
65+ - ' ^chore'
66+ - ' merge conflict'
67+ - Merge pull request
68+ - Merge remote-tracking branch
69+ - Merge branch
70+ - go mod tidy
71+ groups :
72+ - title : Dependency updates
73+ regexp : " ^.*(feat|fix)\\ (deps\\ )*:+.*$"
74+ order : 300
75+ - title : ' New Features'
76+ regexp : " ^.*feat[(\\ w)]*:+.*$"
77+ order : 100
78+ - title : ' Bug fixes'
79+ regexp : " ^.*fix[(\\ w)]*:+.*$"
80+ order : 200
81+ - title : ' Documentation updates'
82+ regexp : " ^.*docs[(\\ w)]*:+.*$"
83+ order : 400
84+ - title : Other work
85+ order : 9999
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ NAMESPACE=keyfactor
66WEBSITE_REPO =https://github.com/Keyfactor/kfutil
77NAME =kfutil
88BINARY =${NAME}
9- VERSION =0 .0.2
9+ VERSION =v0 .0.3
1010OS_ARCH := $(shell go env GOOS) _$(shell go env GOARCH)
1111BASEDIR := ${HOME}/go/bin
1212INSTALLDIR := ${BASEDIR}
4646 gofmt -w $(GOFMT_FILES )
4747
4848prerelease :
49- git tag -d $(VERSION )
50- git push origin :$(VERSION )
49+ git tag -d $(VERSION ) || true
50+ git push origin :$(VERSION ) || true
5151 git tag $(VERSION )
5252 git push origin $(VERSION )
5353
You can’t perform that action at this time.
0 commit comments