aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWang <m4n5terrr@gmail.com>2024-02-05 16:19:05 +0800
committerGitHub <noreply@github.com>2024-02-05 16:19:05 +0800
commit4bb1fcd2e727c3514658d720abed145ca751049f (patch)
treee2673a3a50087375fa2c9d7ee3b8a69079930400
parent9bb1adf8ea5db928e0b21d6ee89876d15d2ec6a1 (diff)
downloadgitea-4bb1fcd2e727c3514658d720abed145ca751049f.tar.gz
gitea-4bb1fcd2e727c3514658d720abed145ca751049f.zip
Fix typos in the documentation (#29048)
Corrected two typos.
-rw-r--r--docs/content/usage/actions/comparison.zh-cn.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/usage/actions/comparison.zh-cn.md b/docs/content/usage/actions/comparison.zh-cn.md
index 006fc8de3f..dbe9ca007d 100644
--- a/docs/content/usage/actions/comparison.zh-cn.md
+++ b/docs/content/usage/actions/comparison.zh-cn.md
@@ -132,7 +132,7 @@ Gitea Actions目前不支持此功能。
如果你使用 `uses: actions/checkout@v4`,Gitea将会从 https://github.com/actions/checkout.git 下载这个 actions 项目。
如果你想要从另外一个 Git服务下载actions,你只需要使用绝对URL `uses: https://gitea.com/actions/checkout@v4` 来下载。
-如果你的 Gitea 实例是部署在一个互联网限制的网络中,有可以使用绝对地址来下载 actions。你也可以讲配置项修改为 `[actions].DEFAULT_ACTIONS_URL = self`。这样所有的相对路径的actions引用,将不再会从 github.com 去下载,而会从这个 Gitea 实例自己的仓库中去下载。例如: `uses: actions/checkout@v4` 将会从 `[server].ROOT_URL`/actions/checkout.git 这个地址去下载 actions。
+如果你的 Gitea 实例是部署在一个互联网限制的网络中,也可以使用绝对地址来下载 actions。你也可以将配置项修改为 `[actions].DEFAULT_ACTIONS_URL = self`。这样所有的相对路径的actions引用,将不再会从 github.com 去下载,而会从这个 Gitea 实例自己的仓库中去下载。例如: `uses: actions/checkout@v4` 将会从 `[server].ROOT_URL`/actions/checkout.git 这个地址去下载 actions。
设置`[actions].DEFAULT_ACTIONS_URL`进行配置。请参阅[配置备忘单](administration/config-cheat-sheet.md#actions-actions)。