You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2022/07/08 10:42:51 UTC

[dolphinscheduler-website] branch master updated: impv: add keys to release KEYS (#807)

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

zhongjiajie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler-website.git


The following commit(s) were added to refs/heads/master by this push:
     new ba6534945 impv: add keys to release KEYS (#807)
ba6534945 is described below

commit ba65349457b4277064213a02dc8cd4dfbc3a569b
Author: Jiajie Zhong <zh...@gmail.com>
AuthorDate: Fri Jul 8 18:42:47 2022 +0800

    impv: add keys to release KEYS (#807)
---
 .dlc.json                  |  3 +++
 community/en-us/release.md | 15 ++++++++++++++-
 community/zh-cn/release.md | 13 +++++++++++++
 3 files changed, 30 insertions(+), 1 deletion(-)

diff --git a/.dlc.json b/.dlc.json
index 306ccd62c..0252520ea 100644
--- a/.dlc.json
+++ b/.dlc.json
@@ -8,6 +8,9 @@
     },
     {
       "pattern": "^http://192"
+    },
+    {
+      "pattern": "https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami"
     }
   ],
   "replacementPatterns": [
diff --git a/community/en-us/release.md b/community/en-us/release.md
index ec764fdaf..8451e7a4f 100644
--- a/community/en-us/release.md
+++ b/community/en-us/release.md
@@ -463,12 +463,25 @@ Thanks everyone for taking time to check this release and help us.
 
 ## Finish the Release
 
-### Move source packages, binary packages and KEYS from the `dev` directory to `release` directory
+### Move source packages, binary packages from the `dev` directory to `release` directory
 
 ```shell
 svn mv https://dist.apache.org/repos/dist/dev/dolphinscheduler/"${VERSION}" https://dist.apache.org/repos/dist/release/dolphinscheduler/
 ```
 
+### Export you new gpg KEYS from dev to release(optional)
+
+Only if the first time you release with this gpg KEY, including it is you first release or you change your KEY
+
+```shell
+mkdir -p ~/ds_svn/release/
+cd ~/ds_svn/release/
+svn --username="${A_USERNAME}" co https://dist.apache.org/repos/dist/release/dolphinscheduler
+gpg -a --export <YOUR-GPG-KEY-ID> >> KEYS
+svn add *
+svn --username="${A_USERNAME}" commit -m "new key <YOUR-GPG-KEY-ID> add"
+```
+
 ### Update Document
 
 Website should be present before you send the announce mail this section will tell you how to change the website. For example,
diff --git a/community/zh-cn/release.md b/community/zh-cn/release.md
index 8dc3a4ddf..71fb7cf1c 100644
--- a/community/zh-cn/release.md
+++ b/community/zh-cn/release.md
@@ -465,6 +465,19 @@ Thanks everyone for taking time to check this release and help us.
 svn mv https://dist.apache.org/repos/dist/dev/dolphinscheduler/"${VERSION}" https://dist.apache.org/repos/dist/release/dolphinscheduler/
 ```
 
+### 将 gpg KEYS svn的dev目录移动到release目录
+
+只有你第一次使用该 KEY 发版时才需要,如果之前已经发过版且 KEY 没有变化则不需要
+
+```shell
+mkdir -p ~/ds_svn/release/
+cd ~/ds_svn/release/
+svn --username="${A_USERNAME}" co https://dist.apache.org/repos/dist/release/dolphinscheduler
+gpg -a --export <YOUR-GPG-KEY-ID> >> KEYS
+svn add *
+svn --username="${A_USERNAME}" commit -m "new key <YOUR-GPG-KEY-ID> add"
+```
+
 ### 更新文档
 
 官网应该在您发送通知邮件之前完成更新,本节将告诉您如何更改网站。假设发版的版本是 `<VERSION>`,需要进行以下更新(注意,当修改pull requests 被 merge 后就会生效):