We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 172f84a commit dec1db2Copy full SHA for dec1db2
.github/workflows/release.yml
@@ -70,6 +70,14 @@ jobs:
70
} >> "$GITHUB_ENV"
71
- name: Stage artifacts
72
run: mvn deploy -Ppublication -Dprettier.skip=true -ntp -e
73
+ - name: Debug - show resolved versions and staged artifacts
74
+ if: always()
75
+ run: |
76
+ echo "=== Git tag/describe ==="
77
+ git describe --tags --exact-match HEAD || echo "(no exact tag match)"
78
+ git describe --tags || echo "(no tags found)"
79
+ echo "=== Staging directory ==="
80
+ find target/staging-deploy -name "*.pom" | sort | head -30
81
- name: Deploy to Maven Central
82
# prereleased: USER_MANAGED — artifacts sit pending in the portal for review.
83
# released: AUTOMATIC — artifacts are published immediately after validation.
0 commit comments