Skip to content

Commit f9b3f4b

Browse files
committed
add debug output for publish.yml
Signed-off-by: Sam Spycher <samspycher@users.noreply.github.com>
1 parent 6983784 commit f9b3f4b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ jobs:
2828
server-id: github # Id of the publication repository field in the pom.xml
2929
settings-path: ${{ github.workspace }} # path for settings.xml with generated authentication info
3030

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+
3138
- name: Verify Project Version is not a SNAPSHOT (on release event only)
3239
if: github.event_name == 'release' # Only run this check for actual releases
3340
run: |

0 commit comments

Comments
 (0)