From 1f00b3e78ccd18faad306c2fceeecbef3a50ddf3 Mon Sep 17 00:00:00 2001 From: Tails developers Date: Sat, 30 Nov 2013 20:42:33 +0000 Subject: [PATCH] Use defined $TAILS_SIGNATURE_KEY variable instead of hard-coding key ID. --- wiki/src/contribute/release_process.mdwn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn index b2a6b641d18..2b17c864c0e 100644 --- a/wiki/src/contribute/release_process.mdwn +++ b/wiki/src/contribute/release_process.mdwn @@ -202,7 +202,7 @@ of `po/` and of the website [[using Tag the release in Git ====================== - git tag -u 1202821CBE2CD9C1 -m "tagging version ${VERSION}" "${TAG}" + git tag -u "$TAILS_SIGNATURE_KEY" -m "tagging version ${VERSION}" "${TAG}" git push --tags (Pushing the tag is needed so that the APT repository is updated, and @@ -351,7 +351,7 @@ Third, generate detached OpenPGP signatures for the image to be published, in the same directory as the image and with a `.sig` extension; e.g. - gpg --armor --default-key 1202821CBE2CD9C1 --detach-sign *.iso + gpg --armor --default-key "$TAILS_SIGNATURE_KEY" --detach-sign *.iso rename 's,\.asc$,.sig,' *.asc Fourth, go up to the parent directory, create a `.torrent` file and @@ -364,7 +364,7 @@ check the generated `.torrent` files metainfo: Fifth, generate detached OpenPGP signatures for every published `.torrent` file: - gpg --armor --default-key 1202821CBE2CD9C1 --detach-sign \ + gpg --armor --default-key "$TAILS_SIGNATURE_KEY" --detach-sign \ tails-i386-$VERSION.torrent && \ mv tails-i386-$VERSION.torrent.{asc,sig} -- 2.11.4.GIT