This is an automated email from the ASF dual-hosted git repository. shenghang pushed a commit to branch remove-incubator-references in repository https://gitbox.apache.org/repos/asf/seatunnel-website.git
commit f55fc8b77a1c04364ca9609b07431a851ad3b50a Author: Shenghang <[email protected]> AuthorDate: Sat Dec 27 21:47:30 2025 +0800 [Improve][Website] Update incubator-seatunnel references to seatunnel after graduation --- HOW_DOC_WORK.md | 6 ++-- README.md | 4 +-- README_ZH.md | 4 +-- community/contribution_guide/code-review.md | 4 +-- community/contribution_guide/contribute.md | 20 +++++++------- community/submit_guide/document.md | 6 ++-- docusaurus.config.js | 16 +++++------ .../current/submit_guide/document.md | 6 ++-- i18n/zh-CN/docusaurus-theme-classic/footer.json | 10 +++---- src/js/sysConfig.js | 8 +++--- src/pages/user/languages.json | 4 +-- src/pages/versions/config.json | 32 +++++++++++----------- tools/build-docs.sh | 2 +- 13 files changed, 61 insertions(+), 61 deletions(-) diff --git a/HOW_DOC_WORK.md b/HOW_DOC_WORK.md index 4481fe3aee7e..533366339d7f 100644 --- a/HOW_DOC_WORK.md +++ b/HOW_DOC_WORK.md @@ -1,7 +1,7 @@ # How Documentation Work -[Our website](https://seatunnel.apache.org) is generated based on this repository(**apache/incubator-seatunnel-website**), -but the content of document is hold on [our codebase repository](https://github.com/apache/incubator-seatunnel/tree/dev/docs). +[Our website](https://seatunnel.apache.org) is generated based on this repository(**apache/seatunnel-website**), +but the content of document is hold on [our codebase repository](https://github.com/apache/seatunnel/tree/dev/docs). So we have to fetch the document from the codebase repository before we build the document. Indeed, you could fetch it by your hand, but we provide the more convenience way to do it, the `build-docs.sh` in directory @@ -9,7 +9,7 @@ Indeed, you could fetch it by your hand, but we provide the more convenience way * Create the directory named `swap` under your project directory, as well `docs` and `static/image_en`. * Fetch the latest code in codebase repository(apache/seatunnel) to directory `swap`. -* Sync the latest `incubator-seatunnel/docs/en` and `incubator-seatunnel/docs/en/image` to directory `docs` and `static/image_en`. +* Sync the latest `seatunnel/docs/en` and `seatunnel/docs/en/image` to directory `docs` and `static/image_en`. When the main library code is synchronized to the local, HTTP is used by default as the protocol for git to communicate with the server, because it do not requests password or secret key. such as local development where we already have RSA public key, run command `export PROTOCOL_MODE=ssh` in terminal change protocol to SSH which in is faster and stable in many cases. diff --git a/README.md b/README.md index 8d7155f3f7bc..416f41150e49 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,8 @@ asf-staging #The asf-staging official website test environment is accessed throu This website is compiled using node, using Docusaurus framework components 1. Download and install nodejs (version>14) -2. Clone the code to the local `git clone [email protected]:apache/incubator-seatunnel-website.git` -3. Run `./tools/build-docs.sh` to fetch and prepare docs form **apache/incubator-seatunnel**, for more information you could see [how our document work](HOW_DOC_WORK.md) +2. Clone the code to the local `git clone [email protected]:apache/seatunnel-website.git` +3. Run `./tools/build-docs.sh` to fetch and prepare docs form **apache/seatunnel**, for more information you could see [how our document work](HOW_DOC_WORK.md) 4. Run `npm install` to install the required dependent libraries. 5. Run `npm run start` in the root directory, you can visit http://localhost:3000 to view the English mode preview of the site 6. Run `npm run start-zh` in the root directory, you can visit http://localhost:3000 to view the Chinese mode preview of the site diff --git a/README_ZH.md b/README_ZH.md index 846097c98af9..cbed303ff820 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -22,8 +22,8 @@ asf-staging 官网测试环境 通过https://seatunnel.staged.apache.org 访问 本网站是使用node编译的,使用的是Docusaurus框架组件 1. 下载并安装 nodejs(version>14) -2. 克隆代码到本地 `git clone [email protected]:apache/incubator-seatunnel-website.git` -3. 运行 `./tools/build-docs.sh` 从 **apache/incubator-seatunnel** 中拉取、准备文档。如果想要了解更多细节和操作请阅读[文档如何工作](HOW_DOC_WORK.md) +2. 克隆代码到本地 `git clone [email protected]:apache/seatunnel-website.git` +3. 运行 `./tools/build-docs.sh` 从 **apache/seatunnel** 中拉取、准备文档。如果想要了解更多细节和操作请阅读[文档如何工作](HOW_DOC_WORK.md) 4. 运行 `npm install` 来安装所需的依赖库。 5. 在根目录运行`npm run start`,可以访问http://localhost:3000查看站点英文模式预览 6. 在根目录运行`npm run start-zh`,可以访问http://localhost:3000查看站点的中文模式预览 diff --git a/community/contribution_guide/code-review.md b/community/contribution_guide/code-review.md index 40b58a40a83e..c8412eda8ae6 100644 --- a/community/contribution_guide/code-review.md +++ b/community/contribution_guide/code-review.md @@ -6,8 +6,8 @@ We hope that code reviewers strictly adhere to this guidance, especially in term 1. Is the title of PR in compliance with regulations and the correct expression of meaning 2. Is there any issue link related to bugs in the description of PR, and is there a design document link for major modifications. -3. Check if documents have been added/changed, and if the document description is correct. A good example is https://github.com/apache/incubator-seatunnel/pull/4590 -4. Check whether to add e2e and the correctness of e2e test (function coverage and result data validation, including whether to cover all supported data types, check whether the columns between the source and target should be aligned, the number of rows should be aligned, and the data in each row should also be aligned). A good example is https://github.com/apache/incubator-seatunnel/tree/dev/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-clickhouse-e2e +3. Check if documents have been added/changed, and if the document description is correct. A good example is https://github.com/apache/seatunnel/pull/4590 +4. Check whether to add e2e and the correctness of e2e test (function coverage and result data validation, including whether to cover all supported data types, check whether the columns between the source and target should be aligned, the number of rows should be aligned, and the data in each row should also be aligned). A good example is https://github.com/apache/seatunnel/tree/dev/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-clickhouse-e2e 5. Check if there are any incompatible changes (especially modifications to parameters, with special attention paid. If incompatible changes are indeed needed, they need to be discussed by email) 6. Check CI results, license updates, etc 7. Enumerator update, check if the split snapshot and restore are correct, including whether the split allocation strategy is stable diff --git a/community/contribution_guide/contribute.md b/community/contribution_guide/contribute.md index c7cdfe08856f..771d768b35a8 100644 --- a/community/contribution_guide/contribute.md +++ b/community/contribution_guide/contribute.md @@ -39,7 +39,7 @@ feedback on any performance or correctness issues found in the newer release. ## Contributing by reviewing changes Changes to SeaTunnel source code are proposed, reviewed and committed via -[GitHub pull requests ](https://github.com/apache/incubator-seatunnel/pulls) (described later). +[GitHub pull requests ](https://github.com/apache/seatunnel/pulls) (described later). Anyone can view and comment on active changes here. Reviewing others' changes is a good way to learn how the change process works and gain exposure to activity in various parts of the code. You can help by reviewing the changes and asking @@ -48,16 +48,16 @@ questions or pointing out issues -- as simple as typos or small issues of style. ## Contributing documentation changes To propose a change to _release_ documentation (that is, docs that appear under -[docs](https://github.com/apache/incubator-seatunnel/tree/dev/docs) +[docs](https://github.com/apache/seatunnel/tree/dev/docs) edit the Markdown source files in SeaTunnel's -[docs](https://github.com/apache/incubator-seatunnel/tree/dev/docs) directory, +[docs](https://github.com/apache/seatunnel/tree/dev/docs) directory, whose `README` file shows how to build the documentation locally to test your changes. The process to propose a doc change is otherwise the same as the process for proposing code changes below. To propose a change to the rest of the documentation (that is, docs that do _not_ appear under -[docs](https://github.com/apache/incubator-seatunnel/tree/dev/docs) , similarly, edit the Markdown in the -[website](https://github.com/apache/incubator-seatunnel-website) and open a pull request. +[docs](https://github.com/apache/seatunnel/tree/dev/docs) , similarly, edit the Markdown in the +[website](https://github.com/apache/seatunnel-website) and open a pull request. ## Contributing bug reports @@ -140,7 +140,7 @@ new and actionable: Often, the problem has been discussed before, with a resolution that doesn't require a code change, or recording what kinds of changes will not be accepted as a resolution. - Search ISSUE for existing issues: - [ISSUES](https://github.com/apache/incubator-seatunnel/issues) + [ISSUES](https://github.com/apache/seatunnel/issues) - Type `SeaTunnel [search terms]` at the top right search box. If a logically similar issue already exists, then contribute to the discussion on the existing ISSUE and pull request first, instead of creating a new one. @@ -218,9 +218,9 @@ have the legal authority to do so.** If you are interested in working with the newest under-development code or contributing to Apache SeaTunnel development, you can check out the master branch from Git: # Master development branch - git clone [email protected]:apache/incubator-seatunnel.git + git clone [email protected]:apache/seatunnel.git -Once you've downloaded SeaTunnel, you can find instructions for installing and building it on the [documentation page](https://github.com/apache/incubator-seatunnel/tree/dev/docs) +Once you've downloaded SeaTunnel, you can find instructions for installing and building it on the [documentation page](https://github.com/apache/seatunnel/tree/dev/docs) ### ISSUE @@ -283,7 +283,7 @@ decisions are discussed in ISSUE. ### Pull request 1. [Fork](https://help.github.com/articles/fork-a-repo/) the GitHub repository at - [incubator-seatunnel](https://github.com/apache/incubator-seatunnel/) if you haven't already + [seatunnel](https://github.com/apache/seatunnel/) if you haven't already 1. Clone your fork, create a new branch, push commits to the branch. 1. Consider whether documentation or tests need to be added or updated as part of the change, and add them as needed. @@ -321,7 +321,7 @@ decisions are discussed in ISSUE. judicious use of LGTMs is a great way to gain credibility as a reviewer with the broader community. - Sometimes, other changes will be merged which conflict with your pull request's changes. The PR can't be merged until the conflict is resolved. This can be resolved by, for example, adding a remote - to keep up with upstream changes by `git remote add upstream [email protected]:apache/incubator-seatunnel.git`, + to keep up with upstream changes by `git remote add upstream [email protected]:apache/seatunnel.git`, running `git fetch upstream` followed by `git rebase upstream/master` and resolving the conflicts by hand, then pushing the result to your branch. - Try to be responsive to the discussion rather than let days pass between replies diff --git a/community/submit_guide/document.md b/community/submit_guide/document.md index 796c21286a25..72a53a9e3b29 100644 --- a/community/submit_guide/document.md +++ b/community/submit_guide/document.md @@ -9,12 +9,12 @@ Good documentation is critical for any type of software. Any contribution that c ## Get the document project -Documentation for the Seatunnel project is maintained in a separate [git repository](https://github.com/apache/incubator-seatunnel-website). +Documentation for the Seatunnel project is maintained in a separate [git repository](https://github.com/apache/seatunnel-website). First you need to fork the document project into your own github repository, and then clone the document to your local computer. ```shell -git clone https://github.com/<your-github-user-name>/incubator-seatunnel-website +git clone https://github.com/<your-github-user-name>/seatunnel-website ``` ## Preview and generate static files @@ -22,7 +22,7 @@ git clone https://github.com/<your-github-user-name>/incubator-seatunnel-website This website is compiled using node, using Docusaurus framework components 1. Download and install nodejs (version>12.5.0) -2. Clone the code to the local `git clone [email protected]:apache/incubator-seatunnel-website.git` +2. Clone the code to the local `git clone [email protected]:apache/seatunnel-website.git` 2. Run `npm install` to install the required dependent libraries. 3. Run `npm run start` in the root directory, you can visit http://localhost:3000 to view the English mode preview of the site 4. Run `npm run start-zh` in the root directory, you can visit http://localhost:3000 to view the Chinese mode preview of the site diff --git a/docusaurus.config.js b/docusaurus.config.js index 85aeb510e743..4145d6659987 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -234,7 +234,7 @@ const config = { ], }, { - href: "https://github.com/apache/incubator-seatunnel", + href: "https://github.com/apache/seatunnel", label: "GitHub", position: "right", }, @@ -263,7 +263,7 @@ const config = { }, { label: "Releases", - href: "https://github.com/apache/incubator-seatunnel/releases", + href: "https://github.com/apache/seatunnel/releases", }, ], }, @@ -272,15 +272,15 @@ const config = { items: [ { label: "GitHub", - href: "https://github.com/apache/incubator-seatunnel", + href: "https://github.com/apache/seatunnel", }, { label: "Issue Tracker", - href: "https://github.com/apache/incubator-seatunnel/issues", + href: "https://github.com/apache/seatunnel/issues", }, { label: "Pull Requests", - href: "https://github.com/apache/incubator-seatunnel/pulls", + href: "https://github.com/apache/seatunnel/pulls", }, ], }, @@ -332,7 +332,7 @@ const config = { editLocalizedFiles: true, // Please change this to your repo. editUrl: - "https://github.com/apache/incubator-seatunnel-website/edit/main/", + "https://github.com/apache/seatunnel-website/edit/main/", versions: { [st_web_versions[0]]: { path: st_web_versions[0], @@ -349,9 +349,9 @@ const config = { routeBasePath: "community", editUrl: ({ locale, versionDocsDirPath, docPath }) => { if (locale !== "en") { - return `https://github.com/apache/incubator-seatunnel-website/edit/main/i18n/${locale}/${docPath}`; + return `https://github.com/apache/seatunnel-website/edit/main/i18n/${locale}/${docPath}`; } - return `https://github.com/apache/incubator-seatunnel-website/edit/main/${versionDocsDirPath}/${docPath}`; + return `https://github.com/apache/seatunnel-website/edit/main/${versionDocsDirPath}/${docPath}`; }, sidebarPath: require.resolve("./sidebarsCommunity.js"), }, diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/submit_guide/document.md b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/submit_guide/document.md index c4ad927ff9a1..8341822c2a5b 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/submit_guide/document.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/submit_guide/document.md @@ -9,12 +9,12 @@ sidebar_position: 1 ## 获取文档项目 -Seatunnel 项目的文档维护在独立的 [git 仓库] (https://github.com/apache/incubator-seatunnel-website) 中。 +Seatunnel 项目的文档维护在独立的 [git 仓库] (https://github.com/apache/seatunnel-website) 中。 首先你需要先将文档项目 fork 到自己的 github 仓库中,然后将 fork 的文档克隆到本地计算机中。 ``` -git clone https://github.com/<your-github-user-name>/incubator-seatunnel-website +git clone https://github.com/<your-github-user-name>/seatunnel-website ``` ## 预览并生成静态文件 @@ -22,7 +22,7 @@ git clone https://github.com/<your-github-user-name>/incubator-seatunnel-website 本网站是使用node编译的,使用的是Docusaurus框架组件 1. 下载并安装 nodejs(version>12.5.0) -2. 克隆代码到本地 `git clone [email protected]:apache/incubator-seatunnel-website.git` +2. 克隆代码到本地 `git clone [email protected]:apache/seatunnel-website.git` 2. 运行 `npm install` 来安装所需的依赖库。 3. 在根目录运行`npm run start`,可以访问http://localhost:3000查看站点英文模式预览 4. 在根目录运行`npm run start-zh`,可以访问http://localhost:3000查看站点的中文模式预览 diff --git a/i18n/zh-CN/docusaurus-theme-classic/footer.json b/i18n/zh-CN/docusaurus-theme-classic/footer.json index 5dfcff504917..6f5bb5d34d31 100644 --- a/i18n/zh-CN/docusaurus-theme-classic/footer.json +++ b/i18n/zh-CN/docusaurus-theme-classic/footer.json @@ -9,7 +9,7 @@ }, "link.item.label.Releases": { "message": "版本", - "description": "The label of footer link with label=Releases linking to https://github.com/apache/incubator-seatunnel/releases" + "description": "The label of footer link with label=Releases linking to https://github.com/apache/seatunnel/releases" }, "link.title.Community": { "message": "社区", @@ -17,16 +17,16 @@ }, "link.item.label.GitHub": { "message": "GitHub", - "description": "The label of footer link with label=GitHub linking to https://github.com/apache/incubator-seatunnel" + "description": "The label of footer link with label=GitHub linking to https://github.com/apache/seatunnel" }, "link.item.label.Issue Tracker": { "message": "Issue Tracker", - "description": "The label of footer link with label=Issue Tracker linking to https://github.com/apache/incubator-seatunnel/issues" + "description": "The label of footer link with label=Issue Tracker linking to https://github.com/apache/seatunnel/issues" }, "link.item.label.Pull Requests": { "message": "Pull Requests", - "description": "The label of footer link with label=Pull Requests linking to https://github.com/apache/incubator-seatunnel/pulls" + "description": "The label of footer link with label=Pull Requests linking to https://github.com/apache/seatunnel/pulls" }, "link.title.Subscribe Mailing List": { @@ -46,7 +46,7 @@ "description": "The label of footer link with label=Mail Archive linking to https://lists.apache.org/[email protected]" }, "copyright": { - "message": "<div style=\"margin-top: 20px;background: #f4f8fa\">\n <img style=\"height:50px;margin-bottom: 10px\" alt=\"Apache Software Foundation\" src=\"/image/asf_logo_wide.svg\" />\n <p style=\"color: #999999;font-weight:400;text-align:left\">Apache SeaTunnel is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indica [...] + "message": "<div style=\"margin-top: 20px;background: #f4f8fa\">\n <img style=\"height:50px;margin-bottom: 10px\" alt=\"Apache Software Foundation\" src=\"/image/asf_logo_wide.svg\" />\n <p style=\"color: #999999;font-weight:400;text-align:left\">Apache SeaTunnel is a top-level project at The Apache Software Foundation.</p>\n <div style=\"border-top: 1px solid #ccc;min-height: 60px;line-height: 20px;text-align: center;font-family: Avenir-M [...] "description": "The footer copyright" } } diff --git a/src/js/sysConfig.js b/src/js/sysConfig.js index 9bf189b13554..6097573d3eb5 100644 --- a/src/js/sysConfig.js +++ b/src/js/sysConfig.js @@ -1,9 +1,9 @@ const systemConfiguration={ github:{ - "projectUrl":"https://github.com/apache/incubator-seatunnel", - "projectReleaseUrl":"https://github.com/apache/incubator-seatunnel/releases", - "projectIssueUrl":"https://github.com/apache/incubator-seatunnel/issues", - "projectPrUrl":"https://github.com/apache/incubator-seatunnel/pulls", + "projectUrl":"https://github.com/apache/seatunnel", + "projectReleaseUrl":"https://github.com/apache/seatunnel/releases", + "projectIssueUrl":"https://github.com/apache/seatunnel/issues", + "projectPrUrl":"https://github.com/apache/seatunnel/pulls", }, } export default systemConfiguration diff --git a/src/pages/user/languages.json b/src/pages/user/languages.json index 2603845f447d..b2dd2d8b1aa0 100644 --- a/src/pages/user/languages.json +++ b/src/pages/user/languages.json @@ -2,13 +2,13 @@ "zh-CN": { "common": { "ourUsers": "Our Users", - "tip":"诸多公司和组织将 SeaTunnel 用于研究、生产和商业产品中<br/> 如果您也在使用 ? <a href=\"https://github.com/apache/incubator-seatunnel/issues/686\" target=\"_blank\" rel=\"noopener\"><u>可以在这里添加</u></a>" + "tip":"诸多公司和组织将 SeaTunnel 用于研究、生产和商业产品中<br/> 如果您也在使用 ? <a href=\"https://github.com/apache/seatunnel/issues/686\" target=\"_blank\" rel=\"noopener\"><u>可以在这里添加</u></a>" } }, "en": { "common": { "ourUsers": "Our Users", - "tip":"Various companies and organizations use SeaTunnel for research, production and commercial products.<br/> Are you using this project ? <a href=\"https://github.com/apache/incubator-seatunnel/issues/686\" target=\"_blank\" rel=\"noopener\"><u>you can add your company</u></a>" + "tip":"Various companies and organizations use SeaTunnel for research, production and commercial products.<br/> Are you using this project ? <a href=\"https://github.com/apache/seatunnel/issues/686\" target=\"_blank\" rel=\"noopener\"><u>you can add your company</u></a>" } } } \ No newline at end of file diff --git a/src/pages/versions/config.json b/src/pages/versions/config.json index f5bbd75a93fe..8b85bfd26739 100644 --- a/src/pages/versions/config.json +++ b/src/pages/versions/config.json @@ -96,49 +96,49 @@ { "versionLabel": "2.3.1", "docUrl": "/docs/2.3.1/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.3.1", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.3.1", "sourceTag": "2.3.1" }, { "versionLabel": "2.3.0", "docUrl": "/docs/2.3.0/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.3.0", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.3.0", "sourceTag": "2.3.0" }, { "versionLabel": "2.3.0-beta", "docUrl": "/docs/2.3.0-beta/intro/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.3.0-beta", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.3.0-beta", "sourceTag": "2.3.0-beta" }, { "versionLabel": "2.2.0-beta", "docUrl": "/docs/2.2.0-beta/intro/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.2.0-beta", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.2.0-beta", "sourceTag": "2.2.0-beta" }, { "versionLabel": "2.1.3", "docUrl": "/docs/2.1.3/intro/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.1.3", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.1.3", "sourceTag": "2.1.3" }, { "versionLabel": "2.1.2", "docUrl": "/docs/2.1.2/intro/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.1.2", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.1.2", "sourceTag": "2.1.2" }, { "versionLabel": "2.1.1", "docUrl": "/docs/2.1.1/intro/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.1.1", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.1.1", "sourceTag": "2.1.1" }, { "versionLabel": "2.1.0", "docUrl": "/docs/2.1.0/introduction", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.1.0", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.1.0", "sourceTag": "2.1.0" } ] @@ -241,49 +241,49 @@ { "versionLabel": "2.3.1", "docUrl": "/docs/2.3.1/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.3.1", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.3.1", "sourceTag": "2.3.1" }, { "versionLabel": "2.3.0", "docUrl": "/docs/2.3.0/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.3.0", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.3.0", "sourceTag": "2.3.0" }, { "versionLabel": "2.3.0-beta", "docUrl": "/docs/2.3.0-beta/intro/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.3.0-beta", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.3.0-beta", "sourceTag": "2.3.0-beta" }, { "versionLabel": "2.2.0-beta", "docUrl": "/docs/2.2.0-beta/intro/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.2.0-beta", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.2.0-beta", "sourceTag": "2.2.0-beta" }, { "versionLabel": "2.1.3", "docUrl": "/docs/2.1.3/intro/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.1.3", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.1.3", "sourceTag": "2.1.3" }, { "versionLabel": "2.1.2", "docUrl": "/docs/2.1.2/intro/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.1.2", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.1.2", "sourceTag": "2.1.2" }, { "versionLabel": "2.1.1", "docUrl": "/docs/2.1.1/intro/about", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.1.1", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.1.1", "sourceTag": "2.1.1" }, { "versionLabel": "2.1.0", "docUrl": "/docs/2.1.0/introduction", - "downloadUrl": "https://github.com/apache/incubator-seatunnel/releases/tag/2.1.0", + "downloadUrl": "https://github.com/apache/seatunnel/releases/tag/2.1.0", "sourceTag": "2.1.0" } ], diff --git a/tools/build-docs.sh b/tools/build-docs.sh index 92e5faafb7fa..6841004b6931 100755 --- a/tools/build-docs.sh +++ b/tools/build-docs.sh @@ -110,7 +110,7 @@ function clone_repo() { ############################################################## # # Replace images path in markdown documents, the source path -# in repo `apache/incubator-seatunnel` is like `images/<name>.png` +# in repo `apache/seatunnel` is like `images/<name>.png` # and we should replace it to `images_en/<name>.png` # # Arguments:
