Skip to content

Commit

Permalink
Merge pull request etcd-io#8142 from gyuho/a
Browse files Browse the repository at this point in the history
Documentation/release: sign *.aci files
  • Loading branch information
gyuho committed Jun 20, 2017
2 parents 20881bd + ca6d7bd commit a40cdc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Documentation/dev-internal/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ The following commands are used for public release sign:

```
cd release
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
for i in etcd-*{.zip,.tar.gz,.aci}; do gpg2 --default-key $SUBKEYID --armor --output ${i}.asc --detach-sign ${i}; done
for i in etcd-*{.zip,.tar.gz,.aci}; do gpg2 --verify ${i}.asc ${i}; done
# sign zipped source code files
wget https://github.com/coreos/etcd/archive/${VERSION}.zip
Expand Down

0 comments on commit a40cdc7

Please sign in to comment.