We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 468ca9c commit db80cb7Copy full SHA for db80cb7
1 file changed
.github/workflows/release.yml
@@ -70,10 +70,14 @@ jobs:
70
} >> "$GITHUB_ENV"
71
- name: Debug - show resolved version before build
72
run: |
73
- echo "=== Git tag/describe ==="
+ echo "=== Git state ==="
74
git describe --tags --exact-match HEAD || echo "(no exact tag match)"
75
+ git branch --show-current || echo "(detached HEAD)"
76
+ git log --oneline -1
77
+ echo "=== Extension config ==="
78
+ cat .mvn/maven-git-versioning-extension.xml
79
echo "=== Maven resolved version ==="
- mvn help:evaluate -Dexpression=project.version -q -DforceStdout
80
+ mvn help:evaluate -Dexpression=project.version -q -DforceStdout -Dversioning.verbose=true 2>&1 | tail -20
81
- name: Stage artifacts
82
run: mvn deploy -Ppublication -Dprettier.skip=true -ntp -e
83
- name: Debug - show staged artifacts
0 commit comments