Polish release shell and doc. (#58)

This commit is contained in:
吴晟 Wu Sheng 2021-10-27 21:44:47 +08:00 committed by GitHub
parent 30fb81a6de
commit 1ef49ef0d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 7 deletions

View File

@ -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)

View File

@ -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