Polish release shell and doc. (#58)
This commit is contained in:
parent
30fb81a6de
commit
1ef49ef0d9
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue