We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d7c1cb commit bd23d64Copy full SHA for bd23d64
doc/sign-log4net-libraries.ps1
@@ -0,0 +1,15 @@
1
+# see https://infra.apache.org/release-signing#openpgp-ascii-detach-sig
2
+$DidSomething = $false
3
+$Files = Get-Item $PSScriptRoot/../build/artifacts/* -Include *log4net*.nupkg, *log4net*.zip
4
+foreach ($File in $Files)
5
+{
6
+ $DidSomething = $true
7
+ "signing: $File"
8
+ gpg --armor --output "$($File.FullName).asc" --detach-sig $File.FullName
9
+}
10
+
11
+if (!$DidSomething)
12
13
+ Write-Error "No log4net artifacts found - are you sure you're in the right directory?"
14
+ exit 2
15
0 commit comments