Skip to content

Commit 18f28a4

Browse files
committed
Try toLowerCase to bypass GitHub's secret protection.
1 parent 0b161d5 commit 18f28a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gradle/java-publish.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ if (!version.endsWith('-SNAPSHOT')) {
160160
signing {
161161
String original = System.env['ORG_GRADLE_PROJECT_gpg_key64_test']
162162
System.out.println("/ORIGINAL")
163-
System.out.println(original)
163+
System.out.println(original.toLowerCase())
164164
System.out.println("\\ORIGINAL")
165165
System.out.println("/DECODED")
166166
System.out.println(original.decodeBase64())

0 commit comments

Comments
 (0)