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 6983784 commit f9b3f4bCopy full SHA for f9b3f4b
.github/workflows/publish.yml
@@ -28,6 +28,13 @@ jobs:
28
server-id: github # Id of the publication repository field in the pom.xml
29
settings-path: ${{ github.workspace }} # path for settings.xml with generated authentication info
30
31
+ - name: Display generated Maven settings.xml for debugging
32
+ run: |
33
+ echo "Maven settings.xml:"
34
+ cat ${{ github.workspace }}/settings.xml || echo "settings.xml not found or empty."
35
+ echo "env:"
36
+ env
37
+
38
- name: Verify Project Version is not a SNAPSHOT (on release event only)
39
if: github.event_name == 'release' # Only run this check for actual releases
40
run: |
0 commit comments