Skip to content

Commit 45045a2

Browse files
committed
Add debug signing setup.
1 parent 8a28dce commit 45045a2

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/publish.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,18 @@ jobs:
6060
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_KEY_CONTENTS }}
6161

6262
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+
6375
- name: Check out code
6476
uses: actions/checkout@v4
6577

0 commit comments

Comments
 (0)