This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-vector-index.git
The following commit(s) were added to refs/heads/main by this push:
new d3d3565 ci: fix staging repo description for Java release (#44)
d3d3565 is described below
commit d3d3565d714a511e90db536f1cb15f3a1aedcd2e
Author: XiaoHongbo <[email protected]>
AuthorDate: Sat Jun 13 13:29:14 2026 +0800
ci: fix staging repo description for Java release (#44)
---
.github/workflows/release-java.yml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/release-java.yml
b/.github/workflows/release-java.yml
index 17f85aa..00f00d5 100644
--- a/.github/workflows/release-java.yml
+++ b/.github/workflows/release-java.yml
@@ -170,9 +170,13 @@ jobs:
- name: Deploy to Apache Nexus staging
working-directory: java
run: |
+ REF="${{ github.ref_name }}"
+ VERSION="${REF#v}"
+ DESC="Apache Paimon Vector Index, version ${VERSION%-rc*}, release
candidate ${VERSION#*-rc}"
mvn clean deploy \
-Prelease \
- -DskipTests
+ -DskipTests \
+ -DstagingDescription="$DESC"
env:
MAVEN_USERNAME: ${{ secrets.NEXUS_STAGE_DEPLOYER_USER }}
MAVEN_PASSWORD: ${{ secrets.NEXUS_STAGE_DEPLOYER_PW }}