diff options
author | Wang <m4n5terrr@gmail.com> | 2024-02-05 21:15:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 21:15:49 +0800 |
commit | b9b2ae214d323fedbe2f9c17eeed08d3e2a67724 (patch) | |
tree | 346b10201a7844018c56daeebd37df57b9e778e3 /docs | |
parent | aadbbf4358878754d925e1548f50f1d0d708dcc5 (diff) | |
download | gitea-b9b2ae214d323fedbe2f9c17eeed08d3e2a67724.tar.gz gitea-b9b2ae214d323fedbe2f9c17eeed08d3e2a67724.zip |
Fix typos in the documentation (#29048) (#29056)
Backport #29048
Corrected two typos.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/usage/actions/comparison.zh-cn.md | 2 |
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 da3abfe01e..9a23ef15f6 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@v3`,Gitea将会从 https://github.com/actions/checkout.git 下载这个 actions 项目。 如果你想要从另外一个 Git服务下载actions,你只需要使用绝对URL `uses: https://gitea.com/actions/checkout@v3` 来下载。 -如果你的 Gitea 实例是部署在一个互联网限制的网络中,有可以使用绝对地址来下载 actions。你也可以讲配置项修改为 `[actions].DEFAULT_ACTIONS_URL = self`。这样所有的相对路径的actions引用,将不再会从 github.com 去下载,而会从这个 Gitea 实例自己的仓库中去下载。例如: `uses: actions/checkout@v3` 将会从 `[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)。 |