This is an automated email from the ASF dual-hosted git repository. XiaoHongbo-Hope pushed a commit to branch release-0.1 in repository https://gitbox.apache.org/repos/asf/paimon-vector-index.git
commit 65c357c3bba999c94fafd50590e0250be2ab5bff 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 }}
