diff options
author | Thomas Haller <thaller@redhat.com> | 2022-04-15 11:41:09 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2022-04-15 13:20:18 (GMT) |
commit | d63e47338b1a2790fbe6569ee8560e8187a2d44b (patch) | |
tree | 7d5969c7efe6a47eeda3421eecffde1a43335159 /tools | |
parent | fa7f97f8982544c4fcb403893bae6701230d5165 (diff) | |
download | libnl-d63e47338b1a2790fbe6569ee8560e8187a2d44b.zip libnl-d63e47338b1a2790fbe6569ee8560e8187a2d44b.tar.gz libnl-d63e47338b1a2790fbe6569ee8560e8187a2d44b.tar.bz2 |
github: build documentation in CI test
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/build_release.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/build_release.sh b/tools/build_release.sh index 3eb45ba..2c77d24 100755 --- a/tools/build_release.sh +++ b/tools/build_release.sh @@ -56,7 +56,9 @@ Copy() { for F in "libnl-$V.tar.gz" "libnl-doc-$V.tar.gz"; do md5sum "./$F" > "./$F.md5sum" sha256sum "./$F" > "./$F.sha256sum" - gpg ${GPG_USER--u thaller@redhat.com} --armor --verbose -o "./$F.sig" --detach-sign "./$F" + if [ "$NO_GPG_SIGN" != 1 ]; then + gpg ${GPG_USER--u thaller@redhat.com} --armor --verbose -o "./$F.sig" --detach-sign "./$F" + fi done ) tar -cvf "./$REL.tar" "./$REL/" |