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

fanjia pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/seatunnel-website.git


The following commit(s) were added to refs/heads/main by this push:
     new ff798c7a0615 [Improve] Update release guide for connector change log 
(#366)
ff798c7a0615 is described below

commit ff798c7a06152ed6c7b0ecc46cb335f26b12e08b
Author: Jia Fan <[email protected]>
AuthorDate: Wed Mar 19 16:32:53 2025 +0800

    [Improve] Update release guide for connector change log (#366)
---
 community/contribution_guide/release.md | 16 ++++++++++++++++
 tools/build-docs.js                     |  2 +-
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/community/contribution_guide/release.md 
b/community/contribution_guide/release.md
index 8c3634a4e9be..b90a944e4e10 100644
--- a/community/contribution_guide/release.md
+++ b/community/contribution_guide/release.md
@@ -270,6 +270,22 @@ git commit -am "fix code style"
 git push
 git push origin --tags
 ```
+
+### Update the connector change log
+
+generate the connector change log
+
+```bash
+python ./tools/documents/update_connector_change_log.py
+```
+
+push the change log to the remote repository
+
+```bash
+git commit -am "[Release][${RELEASE.VERSION}][connector-change-log] Update 
connector change log"
+git push
+```
+
 ### Deploy jar packages
 - Upload jar packages
 
diff --git a/tools/build-docs.js b/tools/build-docs.js
index 052c98265912..0163756e6ee1 100644
--- a/tools/build-docs.js
+++ b/tools/build-docs.js
@@ -90,7 +90,7 @@ function prepareDocs() {
   console.log("===>>>: Clone project main codebase repositories.");
   cloneRepo(
     PROJECT_REPO,
-    PROJECT_TAG_NAME ? PROJECT_TAG_NAME : PROJECT_BRANCH_NAME,
+      PROJECT_TAG_NAME ? PROJECT_TAG_NAME + "-release" : PROJECT_BRANCH_NAME,
     PROJECT_DIR
   );
 

Reply via email to