From ff09db762a8e6c781b5aeaf58d2a44921d736e5a Mon Sep 17 00:00:00 2001 From: Shigma Date: Sat, 12 Aug 2023 00:03:54 +0800 Subject: [PATCH] deploy to dist --- .github/workflows/deploy.yml | 10 ++++++++++ zh-CN/guide/adapter/adapter.md | 2 ++ zh-CN/guide/adapter/bot.md | 2 ++ zh-CN/guide/adapter/index.md | 5 +++-- zh-CN/manual/console/adapter.md | 2 +- zh-CN/plugins/adapter/matrix.md | 6 +++--- 6 files changed, 21 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 557bdd28b21e..8e2a23ca608d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -41,3 +41,13 @@ jobs: - name: Build run: yarn build + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.WORKFLOW_TOKEN }} + publish_branch: dist + publish_dir: .vitepress/dist + force_orphan: true + enable_jekyll: true + commit_message: '[skip ci] deploy' diff --git a/zh-CN/guide/adapter/adapter.md b/zh-CN/guide/adapter/adapter.md index 9af47392861a..b8b2655d1af0 100644 --- a/zh-CN/guide/adapter/adapter.md +++ b/zh-CN/guide/adapter/adapter.md @@ -10,6 +10,8 @@ class ReplBot extends Bot { constructor(ctx: Context, config: Config) { super(ctx, config) + this.platform = 'repl' + this.selfId = 'koishi' ctx.plugin(ReplAdapter, this) } } diff --git a/zh-CN/guide/adapter/bot.md b/zh-CN/guide/adapter/bot.md index d1a5d2c16828..6e5d9b7fe9d5 100644 --- a/zh-CN/guide/adapter/bot.md +++ b/zh-CN/guide/adapter/bot.md @@ -10,6 +10,8 @@ class ReplBot extends Bot { constructor(ctx: Context, config: Config) { super(ctx, config) + this.platform = 'repl' + this.selfId = 'koishi' ctx.plugin(ReplAdapter, this) } diff --git a/zh-CN/guide/adapter/index.md b/zh-CN/guide/adapter/index.md index bb1c9cffbc8a..4292d7068b45 100644 --- a/zh-CN/guide/adapter/index.md +++ b/zh-CN/guide/adapter/index.md @@ -48,6 +48,8 @@ export const Config: Schema = Schema.object({}) export default class ReplBot extends Bot { constructor(ctx: Context, config: Config) { super(ctx, config) + this.platform = 'repl' + this.selfId = 'koishi' ctx.plugin(ReplAdapter, this) } @@ -72,12 +74,11 @@ export default class ReplAdapter extends Adapter.Server { }) async start(bot: ReplBot) { + bot.online() this.rl.on('line', (line) => { const session = bot.session({ type: 'message', isDirect: true, - platform: 'repl', - userId: 'repl', channelId: 'repl', content: line, }) diff --git a/zh-CN/manual/console/adapter.md b/zh-CN/manual/console/adapter.md index d682d2da9d63..08daaf835279 100644 --- a/zh-CN/manual/console/adapter.md +++ b/zh-CN/manual/console/adapter.md @@ -99,7 +99,7 @@ namespaces: ``` 2. 将 `registry.yaml` 添加进你的服务器 (如 synapse 则使用 `app_service_config_files` 配置项来指向 `registry.yaml` 并重启服务器) -3. 在控制台中配置本插件,`host` 填入你的 homeserver 域名,`hs_token`, `as_token` 上述文件中的对应值,`id` 填入任意值 (需要与 `sender_localpart` 不同) +3. 在控制台中配置本插件,`host` 填入你的 Homeserver 域名,`hs_token`, `as_token` 上述文件中的对应值,`id` 填入任意值 (需要与 `sender_localpart` 不同) 4. 安装 [koishi-plugin-verifier](https://common.koishi.chat/plugins/verifier.html) (或其他自助通过群组邀请的插件) 5. 在房间中邀请机器人 (机器人的 ID 为 `@${id}:${host}`) diff --git a/zh-CN/plugins/adapter/matrix.md b/zh-CN/plugins/adapter/matrix.md index 848b112ff87c..8cff8993f6c1 100644 --- a/zh-CN/plugins/adapter/matrix.md +++ b/zh-CN/plugins/adapter/matrix.md @@ -19,7 +19,7 @@ namespaces: ``` 2. 将 `registry.yaml` 添加进你的服务器 (如 synapse 则使用 `app_service_config_files` 配置项来指向 `registry.yaml` 并重启服务器) -3. 在控制台中配置本插件,`host` 填入你的 homeserver 域名,`hs_token`, `as_token` 上述文件中的对应值,`id` 填入任意值 (需要与 `sender_localpart` 不同) +3. 在控制台中配置本插件,`host` 填入你的 Homeserver 域名,`hs_token`, `as_token` 上述文件中的对应值,`id` 填入任意值 (需要与 `sender_localpart` 不同) 4. 安装 [koishi-plugin-verifier](https://common.koishi.chat/plugins/verifier.html) (或其他自助通过群组邀请的插件) 5. 在房间中邀请机器人 (机器人的 ID 为 `@${id}:${host}`) @@ -37,7 +37,7 @@ namespaces: - 类型: `string` - 必需参数 -你的 matrix homeserver 域名。 +Matrix Homeserver 域名。 ### options.hsToken @@ -57,7 +57,7 @@ namespaces: - 类型: `string` -你的 matrix homeserver 地址。默认为 `https://{host}`。 +Matrix Homeserver 地址。默认为 `https://{host}`。 ### options.name