Skip to content

Commit 8d309bb

Browse files
Fix ko build, cut v2.0.1 (#1216)
Signed-off-by: Hayden <[email protected]> Co-authored-by: Hayden <[email protected]>
1 parent 09f902e commit 8d309bb

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v2.0.1
2+
3+
This release is identical to v2.0.0, as it only contains a fix for the release pipeline.
4+
15
# v2.0.0
26

37
v2.0.0 changes the default HTTP response code to 200 for timestamp responses,

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,25 +99,25 @@ ko: ## Run Ko
9999
LDFLAGS="$(LDFLAGS)" GIT_HASH=$(GIT_HASH) GIT_VERSION=$(GIT_VERSION) \
100100
KO_DOCKER_REPO=$(KO_PREFIX)/timestamp-server ko build --bare \
101101
--platform=all --tags $(GIT_VERSION) --tags $(GIT_HASH) \
102-
--image-refs timestampServerImagerefs github.com/sigstore/timestamp-authority/cmd/timestamp-server
102+
--image-refs timestampServerImagerefs github.com/sigstore/timestamp-authority/v2/cmd/timestamp-server
103103

104104
# timestamp-cli
105105
LDFLAGS="$(LDFLAGS)" GIT_HASH=$(GIT_HASH) GIT_VERSION=$(GIT_VERSION) \
106106
KO_DOCKER_REPO=$(KO_PREFIX)/timestamp-cli ko build --bare \
107107
--platform=all --tags $(GIT_VERSION) --tags $(GIT_HASH) \
108-
--image-refs timestampCLIImagerefs github.com/sigstore/timestamp-authority/cmd/timestamp-cli
108+
--image-refs timestampCLIImagerefs github.com/sigstore/timestamp-authority/v2/cmd/timestamp-cli
109109

110110
.PHONY: ko-local
111111
ko-local: ## Run Ko locally
112112
LDFLAGS="$(SERVER_LDFLAGS)" GIT_HASH=$(GIT_HASH) GIT_VERSION=$(GIT_VERSION) \
113113
ko publish --base-import-paths \
114114
--tags $(GIT_VERSION) --tags $(GIT_HASH) --local \
115-
github.com/sigstore/timestamp-authority/cmd/timestamp-server
115+
github.com/sigstore/timestamp-authority/v2/cmd/timestamp-server
116116

117117
LDFLAGS="$(CLI_LDFLAGS)" GIT_HASH=$(GIT_HASH) GIT_VERSION=$(GIT_VERSION) \
118118
ko publish --base-import-paths \
119119
--tags $(GIT_VERSION) --tags $(GIT_HASH) --local \
120-
github.com/sigstore/timestamp-authority/cmd/timestamp-cli
120+
github.com/sigstore/timestamp-authority/v2/cmd/timestamp-cli
121121

122122
## --------------------------------------
123123
## Tooling Binaries

test/fuzz/oss_fuzz_build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
go get github.com/AdamKorcz/go-118-fuzz-build/testing
1818

19-
compile_native_go_fuzzer github.com/sigstore/timestamp-authority/pkg/api FuzzParseJSONRequest FuzzParseJSONRequest
20-
compile_native_go_fuzzer github.com/sigstore/timestamp-authority/pkg/api FuzzParseDERRequest FuzzParseDERRequest
19+
compile_native_go_fuzzer github.com/sigstore/timestamp-authority/v2/pkg/api FuzzParseJSONRequest FuzzParseJSONRequest
20+
compile_native_go_fuzzer github.com/sigstore/timestamp-authority/v2/pkg/api FuzzParseDERRequest FuzzParseDERRequest
2121

2222
zip -qj $OUT/FuzzParseJSONRequest_seed_corpus.zip $SRC/go-fuzz-corpus/json/corpus/*
2323
cp $SRC/afl-fuzz/dictionaries/json.dict $OUT/FuzzParseJSONRequest.dict

0 commit comments

Comments
 (0)