mirror of
https://github.com/containers/skopeo.git
synced 2025-09-21 18:09:08 +00:00
(skopeo copy) and (skopeo sync) now support --sign-by-sigstore=param-file, using the containers-sigstore-signing-params.yaml(5) file format. That notably adds support for Fulcio and Rekor signing. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
12 lines
145 B
Makefile
12 lines
145 B
Makefile
default: test
|
|
|
|
test:
|
|
go vet ./...
|
|
go test -race ./...
|
|
|
|
updatedeps:
|
|
go get -f -t -u ./...
|
|
go get -f -u ./...
|
|
|
|
.PHONY: default test updatedeps
|