diff options
-rw-r--r-- | doc/release-process.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/release-process.md b/doc/release-process.md index 0ac67b9146..e375ae976a 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -136,7 +136,7 @@ Commit your signature to guix.sigs: ```sh pushd ./guix.sigs git add "${VERSION}/${SIGNER}"/noncodesigned.SHA256SUMS{,.asc} -git commit -m "Add ${VERSION} unsigned sigs for ${SIGNER}" +git commit -m "Add attestations by ${SIGNER} for ${VERSION} non-codesigned" git push # Assuming you can push to the guix.sigs tree popd ``` @@ -189,7 +189,7 @@ Commit your signature for the signed macOS/Windows binaries: ```sh pushd ./guix.sigs git add "${VERSION}/${SIGNER}"/all.SHA256SUMS{,.asc} -git commit -m "Add ${SIGNER} ${VERSION} signed binaries signatures" +git commit -m "Add attestations by ${SIGNER} for ${VERSION} codesigned" git push # Assuming you can push to the guix.sigs tree popd ``` |