diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-10 21:07:46 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-10 21:08:08 (EDT) |
commit | d19eb991c6cf206dba7a9ecc0732c4ab5e7b4f85 (patch) | |
tree | 760d54981d0a5aacff70ff55feea772eb6e64dd6 | |
parent | 1707e9424f386b457394c9dd0e5de654d68233aa (diff) |
Makefile.am: Set signing key
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index e470d9e..68f4e95 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,6 +18,8 @@ # along with the ProteanOS Archive Manager. If not, see # <http://www.gnu.org/licenses/>. +KEY = '2250 31F0 47FF E516 63ED 516F 1A45 9ECD E4D6 04BE' + if IN_GIT PACKAGE_VERSION_GIT = $$(git describe --tags --dirty | sed 's|^.*/||') else @@ -151,7 +153,7 @@ release: set -e; \ sigs=''; \ for f in $(DIST_ARCHIVES); do \ - gpg --armor --sign $${f}; \ + gpg --local-user $(KEY) --armor --sign $${f}; \ sigs="$${sigs} $${f}.asc"; \ done; \ ssh files@files.proteanos.com mkdir -p files/pub/$(PACKAGE); \ |