Explorar el Código

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 hace 9 años
padre
commit
e551aec339
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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
 ```