This is an automated email from the ASF dual-hosted git repository.

jin pushed a commit to branch release-1.2.0
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git

commit 49754467ed29662ee783caa6af8a2f4bfdace4a9
Author: imbajin <[email protected]>
AuthorDate: Fri Dec 15 12:13:24 2023 +0800

    fix(dist): update relative path for the 1.2.0
---
 README.md                                                | 10 ++++------
 hugegraph-server/hugegraph-dist/pom.xml                  | 16 ----------------
 .../hugegraph-dist/scripts/apache-release.sh             |  4 ++--
 3 files changed, 6 insertions(+), 24 deletions(-)

diff --git a/README.md b/README.md
index 5e589be60..afc2bfb88 100644
--- a/README.md
+++ b/README.md
@@ -8,11 +8,8 @@
 
 
[![License](https://img.shields.io/badge/license-Apache%202-0E78BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
 
[![HugeGraph-CI](https://github.com/apache/incubator-hugegraph/actions/workflows/ci.yml/badge.svg)](https://github.com/apache/incubator-hugegraph/actions/workflows/ci.yml)
-[![CodeQL](https://github.com/apache/incubator-hugegraph/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/apache/incubator-hugegraph/actions/workflows/codeql-analysis.yml)
 [![License 
checker](https://github.com/apache/incubator-hugegraph/actions/workflows/licence-checker.yml/badge.svg)](https://github.com/apache/incubator-hugegraph/actions/workflows/licence-checker.yml)
-[![Codecov](https://codecov.io/gh/apache/incubator-hugegraph/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/incubator-hugegraph)
 [![GitHub Releases 
Downloads](https://img.shields.io/github/downloads/apache/hugegraph/total.svg)](https://github.com/apache/hugegraph/releases)
-[![stars](https://img.shields.io/github/stars/apache/hugegraph)](https://github.com/apache/incubator-hugegraph/stargazers)
 
 </div>
 
@@ -27,7 +24,7 @@ Billions of vertices and edges can be easily stored into and 
queried from HugeGr
 - Compliance to [Apache TinkerPop 3](https://tinkerpop.apache.org/), support 
[Gremlin](https://tinkerpop.apache.org/gremlin.html) & 
[Cypher](https://en.wikipedia.org/wiki/Cypher) language
 - Schema Metadata Management, including VertexLabel, EdgeLabel, PropertyKey 
and IndexLabel
 - Multi-type Indexes, supporting exact query, range query and complex 
conditions combination query
-- Plug-in Backend Store Driver Framework, support `RocksDB`, `Cassandra`, 
`HBase`, `ScyllaDB`, and `MySQL/Postgre` now and easy to add other backend 
store driver if needed
+- Plug-in Backend Store Driver Framework, support `RocksDB`, `Cassandra`, 
`HBase`, `ScyllaDB`, and `MySQL/Postgre` now and easy to add another backend 
store driver if needed
 - Integration with `Flink/Spark/HDFS`, and friendly to connect other big data 
platforms
 
 
@@ -36,7 +33,7 @@ Billions of vertices and edges can be easily stored into and 
queried from HugeGr
 ### 1. Docker Way
 
 We can use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph` to 
quickly start an inner 
-HugeGraph server with `RocksDB` in background.
+HugeGraph server with `RocksDB` in backgrounds. (Use `release tag`(like 
`1.0.0`) for the stable version)
 
 Optional: 
 
@@ -81,7 +78,8 @@ HugeGraph is licensed under Apache 2.0 License.
 HugeGraph relies on the [TinkerPop](http://tinkerpop.apache.org) framework, we 
refer to the storage structure of Titan and the schema definition of DataStax. 
 Thanks to TinkerPop, thanks to Titan, thanks to DataStax. Thanks to all other 
organizations or authors who contributed to the project.
 
-You are welcome to contribute to HugeGraph, and we are looking forward to 
working with you to build an excellent open source community.
+You are welcome to contribute to HugeGraph, 
+and we are looking forward to working with you to build an excellent 
open-source community.
 
 
 ## Contact Us
diff --git a/hugegraph-server/hugegraph-dist/pom.xml 
b/hugegraph-server/hugegraph-dist/pom.xml
index cdec80950..9a58ac767 100644
--- a/hugegraph-server/hugegraph-dist/pom.xml
+++ b/hugegraph-server/hugegraph-dist/pom.xml
@@ -293,22 +293,6 @@
                                                 <include 
name="${final.name}/**"/>
                                             </tarfileset>
                                         </tar>
-                                        <!-- copy the artifacts to root
-                                             directory for better user 
experience -->
-                                        <!-- REMOVE ME after revision 1.5.0 -->
-                                        <exec executable="cp"
-                                              dir="${project.basedir}"
-                                              failonerror="false">
-                                            <arg value="-r"/>
-                                            <arg value="../${final.name}"/>
-                                            <arg value="../../${final.name}"/>
-                                        </exec>
-                                        <exec executable="cp"
-                                              dir="${project.basedir}"
-                                              failonerror="false">
-                                            <arg 
value="../${final.name}.tar.gz"/>
-                                            <arg 
value="../../${final.name}.tar.gz"/>
-                                        </exec>
                                     </target>
                                 </configuration>
                             </execution>
diff --git a/hugegraph-server/hugegraph-dist/scripts/apache-release.sh 
b/hugegraph-server/hugegraph-dist/scripts/apache-release.sh
index a92a59b37..277fed8b7 100755
--- a/hugegraph-server/hugegraph-dist/scripts/apache-release.sh
+++ b/hugegraph-server/hugegraph-dist/scripts/apache-release.sh
@@ -33,13 +33,13 @@ WORK_DIR=$(
   pwd
 )
 cd "${WORK_DIR}" || exit
-echo "In the work dir: $(pwd)"
+echo "Current work dir: $(pwd)"
 
 # clean old dir then build a new one
 rm -rf dist && mkdir -p dist/apache-${REPO}
 
 # step1: package the source code
-cd ../../
+cd ../../../ && echo "Package source in: $(pwd)"
 git archive --format=tar.gz \
   
--output="hugegraph-server/hugegraph-dist/scripts/dist/apache-${REPO}/apache-${REPO}-incubating-${RELEASE_VERSION}-src.tar.gz"
 \
   --prefix=apache-${REPO}-incubating-"${RELEASE_VERSION}"-src/ "${GIT_BRANCH}" 
|| exit

Reply via email to