Browse Source

doc: sign release artifacts in armor mode

Release guide steps to artifacts signing defaults to binary
signatures, while producing .asc files.
This commit changes to armored signatures, also matching appc
requirements.

Fixes #5594
Luca Bruno 10 năm trước cách đây
mục cha
commit
e551aec339
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Documentation/dev-internal/release.md

+ 1 - 1
Documentation/dev-internal/release.md

@@ -66,7 +66,7 @@ The following commands are used for public release sign:
 
 ```
 cd release
-for i in etcd-*{.zip,.tar.gz}; do gpg2 --default-key $SUBKEYID --output ${i}.asc --detach-sign ${i}; done
+for i in etcd-*{.zip,.tar.gz}; do gpg2 --default-key $SUBKEYID --armor --output ${i}.asc --detach-sign ${i}; done
 for i in etcd-*{.zip,.tar.gz}; do gpg2 --verify ${i}.asc ${i}; done
 ```