We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4075f4a commit c9a48e6Copy full SHA for c9a48e6
1 file changed
.github/workflows/publish-sonatype.yml
@@ -57,6 +57,17 @@ jobs:
57
run: |
58
gpg --list-secret-keys --keyid-format LONG
59
60
+ - name: Debug settings.xml content
61
+ run: |
62
+ echo "=== Maven settings.xml content ==="
63
+ if [ -f ~/.m2/settings.xml ]; then
64
+ cat ~/.m2/settings.xml
65
+ else
66
+ echo "settings.xml not found at ~/.m2/settings.xml"
67
+ find ~/.m2 -name "settings.xml" -exec cat {} \; 2>/dev/null || echo "No settings.xml found in ~/.m2"
68
+ fi
69
+ echo "=== End of settings.xml content ==="
70
+
71
- name: Build & publish via central publishing plugin
72
env:
73
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
0 commit comments