Skip to content

Commit

Permalink
Merge pull request NixOS#7411 from edolstra/no-gpg
Browse files Browse the repository at this point in the history
Remove GPG-signing of releases
  • Loading branch information
edolstra authored Dec 20, 2022
2 parents 8332ac6 + 8fc9a4e commit 17373de
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions maintainers/upload-release.pl
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,6 @@ sub downloadFile {

write_file("$tmpFile.sha256", $sha256_actual);

if (! -e "$tmpFile.asc") {
system("gpg2 --detach-sign --armor $tmpFile") == 0 or die "unable to sign $tmpFile\n";
}

return $sha256_expected;
}

Expand Down Expand Up @@ -194,7 +190,7 @@ sub downloadFile {
my $configuration = ();
$configuration->{content_type} = "application/octet-stream";

if ($fn =~ /.sha256|.asc|install/) {
if ($fn =~ /.sha256|install/) {
# Text files
$configuration->{content_type} = "text/plain";
}
Expand Down

0 comments on commit 17373de

Please sign in to comment.