You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/10/27 13:44:54 UTC

[skywalking-java] branch main updated: Polish release shell and doc. (#58)

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

kezhenxu94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-java.git


The following commit(s) were added to refs/heads/main by this push:
     new 1ef49ef  Polish release shell and doc. (#58)
1ef49ef is described below

commit 1ef49ef0d99edb974fdbc8d5593caec6596d51e8
Author: 吴晟 Wu Sheng <wu...@foxmail.com>
AuthorDate: Wed Oct 27 21:44:47 2021 +0800

    Polish release shell and doc. (#58)
---
 docs/en/contribution/release-java-agent.md | 7 +------
 tools/releasing/create_release.sh          | 3 ++-
 2 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/docs/en/contribution/release-java-agent.md b/docs/en/contribution/release-java-agent.md
index 2a36763..2901688 100644
--- a/docs/en/contribution/release-java-agent.md
+++ b/docs/en/contribution/release-java-agent.md
@@ -82,12 +82,7 @@ This script takes care of the following things:
 1. Use your Apache ID to log in to `https://dist.apache.org/repos/dist/dev/skywalking/java-agent/`.
 1. Create a folder and name it by the release version and round, such as: `x.y.z`
 1. Upload the source code package to the folder with files ending with `.asc` and `.sha512`.
-    * Package name: `apache-skywalking-x.y.z-src.tar.gz`
-    * See Section "Build and sign the source code package" for more details 
 1. Upload the distribution package to the folder with files ending with `.asc` and `.sha512`.
-    * Package name:  `apache-skywalking-java-agent-x.y.z.tar.gz`
-    * See Section "Locate and download the distribution package in Apache Nexus Staging repositories" for more details.
-    * Create a `.sha512` package: `shasum -a 512 file > file.sha512`
 
 ## Make the internal announcements
 Send an announcement mail in dev mail list.
@@ -169,7 +164,7 @@ Release Tag :
 
 Release CommitID :
 
- * https://github.com/apache/skywalking/tree/(Git Commit ID)
+ * https://github.com/apache/skywalking-java/tree/(Git Commit ID)
  * Git submodule
    * apm-protocol/apm-network/src/main/proto: https://github.com/apache/skywalking-data-collect-protocol/tree/(Git Commit ID)
 
diff --git a/tools/releasing/create_release.sh b/tools/releasing/create_release.sh
index 0718267..ee78728 100755
--- a/tools/releasing/create_release.sh
+++ b/tools/releasing/create_release.sh
@@ -43,7 +43,7 @@ PRODUCT_NAME=${PRODUCT_NAME}-${RELEASE_VERSION}
 rm -rf ${PRODUCT_NAME}
 mkdir ${PRODUCT_NAME}
 
-git clone https://github.com/apache/skywalking.git ./${PRODUCT_NAME}
+git clone https://github.com/apache/skywalking-java.git ./${PRODUCT_NAME}
 cd ${PRODUCT_NAME}
 
 TAG_EXIST=`git tag -l ${TAG_NAME} | wc -l`
@@ -75,4 +75,5 @@ shasum -a 512 ${PRODUCT_NAME}-src.tgz > ${PRODUCT_NAME}-src.tgz.sha512
 
 # Build binary tar
 cd ${PRODUCT_NAME}
+export TAG=${RELEASE_VERSION}
 make dist