Browse Source

fix instructions for signing the checksum file

tags/v2.9.0
Shivaram Lingamneni 2 years ago
parent
commit
fb2be58e60
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      DEVELOPING.md

+ 1
- 1
DEVELOPING.md View File

@@ -55,7 +55,7 @@ Ergo vendors all dependencies using `go mod vendor`. To update a dependency, or
55 55
 1. Commit the new changelog and constants change.
56 56
 1. Tag the release with `git tag --sign v0.0.0 -m "Release v0.0.0"` (`0.0.0` replaced with the real ver number).
57 57
 1. Build binaries using `make release`
58
-1. Sign the checksums file with `gpg --detach-sig --default-key`
58
+1. Sign the checksums file with `gpg --sign --detach-sig --local-user <fingerprint>`
59 59
 1. Smoke-test a built binary locally
60 60
 1. Point of no return: `git push origin master --tags` (this publishes the tag; any fixes after this will require a new point release)
61 61
 1. Publish the release on GitHub (Releases -> "Draft a new release"); use the new tag, post the changelog entries, upload the binaries, the checksums file, and the signature of the checksums file

Loading…
Cancel
Save