diff --git a/docs/en/contribution/release-java-agent.md b/docs/en/contribution/release-java-agent.md index 2a367635f..2901688d2 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 071826722..ee78728de 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