File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 60
60
ORG_GRADLE_PROJECT_signingInMemoryKey : ${{ secrets.GPG_KEY_CONTENTS }}
61
61
62
62
steps :
63
+ - name : Debug Signing Setup
64
+ run : |
65
+ echo "Environment variables:"
66
+ echo "Username set: $([[ -n "$ORG_GRADLE_PROJECT_mavenCentralUsername" ]] && echo "✅" || echo "❌")"
67
+ echo "Password set: $([[ -n "$ORG_GRADLE_PROJECT_mavenCentralPassword" ]] && echo "✅" || echo "❌")"
68
+ echo "Key ID set: $([[ -n "$ORG_GRADLE_PROJECT_signingInMemoryKeyId" ]] && echo "✅" || echo "❌")"
69
+ echo "Key Password set: $([[ -n "$ORG_GRADLE_PROJECT_signingInMemoryKeyPassword" ]] && echo "✅" || echo "❌")"
70
+ echo "GPG Key set: $([[ -n "$ORG_GRADLE_PROJECT_signingInMemoryKey" ]] && echo "✅" || echo "❌")"
71
+ echo ""
72
+ echo "Testing Gradle can see the properties:"
73
+ ./gradlew properties | grep signingInMemoryKey || echo "❌ signingInMemoryKey not found"
74
+
63
75
- name : Check out code
64
76
uses : actions/checkout@v4
65
77
You can’t perform that action at this time.
0 commit comments