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

mikexue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-eventmesh-site.git


The following commit(s) were added to refs/heads/master by this push:
     new d627201  * update download.md * update apache-release.md
d627201 is described below

commit d62720105b70e88a4d77eec98e58e67ef3a31a9a
Author: xwm1992 <[email protected]>
AuthorDate: Thu Aug 12 14:36:36 2021 +0800

    * update download.md
    * update apache-release.md
---
 community/apache-release.md | 42 +++++++++++++++++++++++++-----------------
 src/pages/download.md       |  3 +--
 2 files changed, 26 insertions(+), 19 deletions(-)

diff --git a/community/apache-release.md b/community/apache-release.md
index 843e541..1ffc0ce 100644
--- a/community/apache-release.md
+++ b/community/apache-release.md
@@ -143,7 +143,13 @@ $ gpg --export-secret-keys -o secring.gpg #私钥文件妥善保管,后面配
 
 
从主干分支拉取新分支作为发布分支,如现在要发布$`{release_version}`版本,则从develop分支拉出新分支`${release_version}-release`,此后`${release_version}`
 Release Candidates涉及的修改及打标签等都在`${release_version}-release`分支进行,最终发布完成后合入主干分支。
 
-### 3.配置根项目下gradle.properties文件
+### 3.更新版本说明
+
+更新官网项目的如下文件,并提交至master分支:
+
+https://github.com/apache/incubator-eventmesh-site/tree/master/events/release-notes
+
+### 4.配置根项目下gradle.properties文件
 
 ```shell
 group=org.apache.eventmesh
@@ -160,14 +166,14 @@ apacheUserName=
 apachePassWord=
 ```
 
-### 4.检查子模块下gradle.properties文件
+### 5.检查子模块下gradle.properties文件
 
 ```shell
 group=org.apache.eventmesh
 version=${release_version}
 ```
 
-### 5.检查并配置根项目下build.gradle文件
+### 6.检查并配置根项目下build.gradle文件
 
 ```shell
 publishing {
@@ -228,7 +234,7 @@ signing {
 }
 ```
 
-### 6.上传发布包
+### 7.上传发布包
 
 执行如下命令,需要对jar、源码包、doc和pom等文件签名加密
 
@@ -268,7 +274,7 @@ $ mkdir ${release_version}-${rc_version}
 
 #### 4.1 创建tag
 
-在`${release_version}-release`分支上创建tag
+在`${release_version}-release`分支上创建tag,需带有rc版本,为预发布版本
 
 ```shell
 $ git tag -a v{$release_version}-{$rc_version} -m "Tagging the 
${release_version} first Releae Candidate (Candidates start at zero)"
@@ -280,7 +286,7 @@ $ git push origin --tags
 
检查项目源码命名,将源码命名为`apache-eventmesh-${release_version}-incubating-src`,将源码打包为tar.gz格式
 
 ```shell
-$ tar -czvf 
apache-eventmesh-${release_version}-${rc_version}-incubating-source.tar.gz 
apache-eventmesh-${release_version}-incubating-src
+$ tar -czvf apache-eventmesh-${release_version}-incubating-source.tar.gz 
apache-eventmesh-${release_version}-incubating-src
 ```
 
 #### 4.3 打包二进制
@@ -291,7 +297,7 @@ $ tar -czvf 
apache-eventmesh-${release_version}-${rc_version}-incubating-source.
 
 ```shell
 $ gradle clean dist tar -x test
-$ tar -czvf 
apache-eventmesh-${release_version}-${rc_version}-incubating-bin.tar.gz 
apache-eventmesh-${release_version}-incubating
+$ tar -czvf apache-eventmesh-${release_version}-incubating-bin.tar.gz 
apache-eventmesh-${release_version}-incubating
 ```
 
 
压缩source包、bin包,并将相关的压缩包拷贝到svn本地仓库下`/apache/eventmesh/${release_version}-${rc_version}`
@@ -299,7 +305,6 @@ $ tar -czvf 
apache-eventmesh-${release_version}-${rc_version}-incubating-bin.tar
 ### 5.生成签名/sha512文件
 
 > 针对源码包与二进制包生成签名/sha512文件
->
 
 ```shell
 $ for i in *.tar.gz; do echo $i; gpg --print-md SHA512 $i > $i.sha512 ; done 
#计算sha512
@@ -337,18 +342,18 @@ 
https://dist.apache.org/repos/dist/dev/incubator/eventmesh/${release_version}-${
 > Mac OS/Linux
 
 ```shell
-$ shasum -a 
apache-eventmesh-${release_version}-${rc_version}-incubating-source.tar.gz
+$ shasum -a apache-eventmesh-${release_version}-incubating-source.tar.gz
 #并将输出内容与 
apache-eventmesh-${release_version}-${rc_version}-incubating-source.tar.gz.sha512文件内容作对比
-$ shasum -a 
apache-eventmesh-${release_version}-${rc_version}-incubating-bin.tar.gz
+$ shasum -a apache-eventmesh-${release_version}-incubating-bin.tar.gz
 #并将输出内容与 
apache-eventmesh-${release_version}-${rc_version}-incubating-bin.tar.gz.sha512文件内容作对比
 ```
 
 > Windows
 
 ```shell
-$ certUtil -hashfile 
apache-eventmesh-${release_version}-${rc_version}-incubating-source.tar.gz 
SHA512
+$ certUtil -hashfile 
apache-eventmesh-${release_version}-incubating-source.tar.gz SHA512
 #并将输出内容与 
apache-eventmesh-${release_version}-${rc_version}-incubating-source.tar.gz.sha512文件内容作对比
-$ certUtil -hashfile 
apache-eventmesh-${release_version}-${rc_version}-incubating-bin.tar.gz SHA512
+$ certUtil -hashfile apache-eventmesh-${release_version}-incubating-bin.tar.gz 
SHA512
 #并将输出内容与 
apache-eventmesh-${release_version}-${rc_version}-incubating-bin.tar.gz.sha512文件内容作对比
 ```
 
@@ -380,13 +385,13 @@ Your decision? 5
 然后使用如下命令检查签名
 
 ```shell
-$ gpg --verify 
apache-eventmesh-${release_version}-${rc_version}-incubating-source.tar.gz.asc 
apache-eventmesh-${release_version}-${rc_version}-incubating-source-tar.gz
-$ gpg --verify 
apache-eventmesh-${release_version}-${rc_version}-incubating-bin.tar.gz.asc 
apache-eventmesh-${release_version}-${rc_version}-incubating-bin.tar.gz
+$ gpg --verify 
apache-eventmesh-${release_version}-incubating-source.tar.gz.asc 
apache-eventmesh-${release_version}-incubating-source-tar.gz
+$ gpg --verify apache-eventmesh-${release_version}-incubating-bin.tar.gz.asc 
apache-eventmesh-${release_version}-incubating-bin.tar.gz
 ```
 
 ### 2.检查源码包的文件内容
 
-解压缩`apache-eventmesh-${release_version}-${rc_version}-incubating-source-tar.gz`,进行如下检查:
+解压缩`apache-eventmesh-${release_version}-incubating-source-tar.gz`,进行如下检查:
 
 - 检查源码包是否包含由于包含不必要文件,致使tar包过于庞大
 - 文件夹包含单词`incubating`
@@ -649,7 +654,9 @@ $ svn delete 
https://dist.apache.org/repos/dist/release/incubator/eventmesh/${la
 
 ### 5.GitHub版本发布
 
-在 [GitHub Releases](https://github.com/apache/incubator/eventmesh/releases) 
页面的 `${release_version}` 版本上点击 `Edit`
+1.Tag the commit (on which the vote happened) with the release version without 
`-${RELEASE_CANDIDATE}`. 例如:after a successful vote on `v1.2-rc5`, the hash 
will be tagged again with `v1.2` only.
+
+2.在 [GitHub Releases](https://github.com/apache/incubator/eventmesh/releases) 
页面的 `${release_version}` 版本上点击 `Edit`
 
 编辑版本号及版本说明,并点击 `Publish release`
 
@@ -686,7 +693,7 @@ Apache EventMesh (incubating) is a dynamic cloud-native 
eventing infrastruture u
 
 Download Links: https://eventmesh.apache.org/projects/eventmesh/download/
 
-Release Notes: 
https://github.com/apache/incubator-eventmesh/releases/tag/v1.2.0-rc1
+Release Notes: 
https://eventmesh.apache.org/events/release-notes/v${release_version}/
 
 Website: https://eventmesh.apache.org/
 
@@ -698,3 +705,4 @@ EventMesh Resources:
 
 - Apache EventMesh (incubating) Team
 ```
+
diff --git a/src/pages/download.md b/src/pages/download.md
index 0c77d79..090fc2f 100644
--- a/src/pages/download.md
+++ b/src/pages/download.md
@@ -14,8 +14,7 @@ Use the links below to download the Apache EventMesh 
(Incubating) Releases, the
 - Released : Aug 11, 2021
 - [Release Notes](https://eventmesh.apache.org/events/release-notes/v1.2.0) 
 - Source Codes 
[[tar]](https://www.apache.org/dyn/closer.cgi/incubator/eventmesh/1.2.0-incubating/apache-eventmesh-1.2.0-incubating-source.tar.gz)
 
[[asc]](https://downloads.apache.org/incubator/eventmesh/1.2.0-incubating/apache-eventmesh-1.2.0-incubating-source.tar.gz.asc)
 
[[sha512]](https://downloads.apache.org/incubator/eventmesh/1.2.0-incubating/apache-eventmesh-1.2.0-incubating-source.tar.gz.sha512)
-- EventMesh Binary Distribution 
[[tar]](https://www.apache.org/dyn/closer.cgi/incubator/eventmesh/1.2.0-incubating/apache-eventmesh-1.2.0-incubating-bin.tar.gz)
 
[[zip]](https://github.com/apache/incubator-eventmesh/releases/download/v1.2.0/apache-eventmesh-1.2.0-incubating-bin.zip)
 
[[asc]](https://downloads.apache.org/incubator/eventmesh/1.2.0-incubating/apache-eventmesh-1.2.0-incubating-bin.tar.gz.asc)
 
[[sha512]](https://downloads.apache.org/incubator/eventmesh/1.2.0-incubating/apache-e
 [...]
-- EventMesh Java SDK Binary Distribution 
[[tar]](https://github.com/apache/incubator-eventmesh/releases/download/v1.2.0/apache-eventmesh-sdk-java-1.2.0-incubating-bin.tar.gz)
 
[[zip]](https://github.com/apache/incubator-eventmesh/releases/download/v1.2.0/apache-eventmesh-sdk-java-1.2.0-incubating-bin.zip)
+- EventMesh Binary Distribution 
[[tar]](https://www.apache.org/dyn/closer.cgi/incubator/eventmesh/1.2.0-incubating/apache-eventmesh-1.2.0-incubating-bin.tar.gz)
 
[[asc]](https://downloads.apache.org/incubator/eventmesh/1.2.0-incubating/apache-eventmesh-1.2.0-incubating-bin.tar.gz.asc)
 
[[sha512]](https://downloads.apache.org/incubator/eventmesh/1.2.0-incubating/apache-eventmesh-1.2.0-incubating-bin.tar.gz.sha512)
 
 ## Release Integrity
 

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to