-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from simple-robot/dev/main
Release: v4.0.0-beta5
- Loading branch information
Showing
76 changed files
with
1,182 additions
and
946 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
> 对应核心版本: [**v4.5.0**](https://github.com/simple-robot/simpler-robot/releases/tag/v4.5.0) | ||
> [!warning] | ||
> 目前版本尚处于 **`beta`** 阶段,代表仍然可能存在部分已知问题或未知问题, | ||
> 以及尚未完善的内容和落后于官方更新的内容。 | ||
我们欢迎并期望着您的 [反馈](https://github.com/simple-robot/simbot-component-kook/issues) 或 [协助](https://github.com/simple-robot/simbot-component-kook/pulls),感谢您的贡献与支持! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,6 @@ updates: | |
interval: weekly | ||
labels: | ||
- dependencies | ||
assignees: | ||
- ForteScarlet | ||
open-pull-requests-limit: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Publish KDoc | ||
on: | ||
workflow_dispatch: | ||
|
||
|
||
env: | ||
JAVA_VERSION: 21 | ||
JAVA_DISTRIBUTION: zulu | ||
GRADLE_VERSION: 8.5 | ||
IS_CI: true | ||
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }} | ||
GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }} | ||
GPG_PASSWORD: ${{ secrets.GPG_PASSWORD }} | ||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | ||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | ||
GRADLE_OPTS: "-XX:MaxMetaspaceSize=2g -Dfile.encoding=UTF-8" | ||
|
||
jobs: | ||
deploy-doc: | ||
name: Deploy-doc | ||
runs-on: ubuntu-latest | ||
steps: | ||
# 检出仓库代码 | ||
- name: Check out repo | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
# setup Java | ||
- name: Setup java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: ${{ env.JAVA_DISTRIBUTION }} | ||
java-version: ${{ env.JAVA_VERSION }} | ||
|
||
# setup Gradle | ||
- name: Gradle generate documentation | ||
uses: gradle/actions/setup-gradle@v3 | ||
with: | ||
gradle-version: ${{ env.GRADLE_VERSION }} | ||
arguments: | | ||
-Porg.gradle.jvmargs="-Xmx4g -Xms4g -XX:MaxMetaspaceSize=2g -Dfile.encoding=UTF-8" | ||
-Porg.gradle.daemon=false | ||
--info | ||
--warning-mode all | ||
-x test | ||
--build-cache | ||
dokkaHtmlMultiModule | ||
- name: Push to doc repository | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
personal_token: ${{ secrets.PUSH_TOKEN }} | ||
external_repository: simple-robot-library/simbot3-api-docs | ||
publish_branch: kdoc-deploy/component-kook | ||
publish_dir: ./build/dokka/html | ||
# deploy to sub dir | ||
destination_dir: components/kook | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.