Skip to content

Commit f90c0ff

Browse files
committed
chore: Bump API client version
feat(util): Base implementation of `root of trust`
1 parent b1a4f1f commit f90c0ff

File tree

7 files changed

+344
-65
lines changed

7 files changed

+344
-65
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ jobs:
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)

.goreleaser.yml

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ archives:
3333
- format: zip
3434
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
3535
checksum:
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
3941
signs:
@@ -49,8 +51,35 @@ signs:
4951
- "--detach-sign"
5052
- "${artifact}"
5153
release:
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
5559
changelog:
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

GNUmakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ NAMESPACE=keyfactor
66
WEBSITE_REPO=https://github.com/Keyfactor/kfutil
77
NAME=kfutil
88
BINARY=${NAME}
9-
VERSION=0.0.2
9+
VERSION=v0.0.3
1010
OS_ARCH := $(shell go env GOOS)_$(shell go env GOARCH)
1111
BASEDIR := ${HOME}/go/bin
1212
INSTALLDIR := ${BASEDIR}
@@ -46,8 +46,8 @@ fmt:
4646
gofmt -w $(GOFMT_FILES)
4747

4848
prerelease:
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

0 commit comments

Comments
 (0)