Skip to content

Commit 4e49163

Browse files
author
mmogos
committed
testing
1 parent 547e8d7 commit 4e49163

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/brief-msg-test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,17 @@ jobs:
2323
needs: prep
2424
runs-on: ubuntu-latest
2525
steps:
26-
- env:
26+
- name: Verify secrets are non-empty
27+
env:
2728
NEXUS_USER: ${{ needs.prep.outputs.nexus_user }}
2829
NEXUS_PASSWORD: ${{ needs.prep.outputs.nexus_password }}
2930
run: |
30-
echo "${NEXUS_USER:0:4}"
31-
echo "${NEXUS_PASSWORD:0:4}"
31+
# Length check is NOT masked by GitHub — shows 0 if truly empty
32+
echo "NEXUS_USER length: ${#NEXUS_USER}"
33+
echo "NEXUS_PASSWORD length: ${#NEXUS_PASSWORD}"
34+
# Substring will show *** in logs if GitHub masks it (that means the value IS present)
35+
echo "NEXUS_USER first 4: ${NEXUS_USER:0:4}"
36+
echo "NEXUS_PASSWORD first 4: ${NEXUS_PASSWORD:0:4}"
3237
3338
# json_schema_tests:
3439
# needs: prep

0 commit comments

Comments
 (0)