We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff9679a commit f37c867Copy full SHA for f37c867
.github/workflows/deploy-tg-kdoc.yml
@@ -0,0 +1,22 @@
1
+name: Deploy Telegram KDoc Pages
2
+on:
3
+ push:
4
+ branches:
5
+ - kdoc-deploy/component-telegram
6
+
7
+jobs:
8
+ deploy-telegram-kdoc-pages:
9
+ name: deploy-telegram-kdoc-pages
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ # 检出仓库代码
13
+ - uses: actions/checkout@v4
14
15
+ # https://github.com/marketplace/actions/github-pages-action
16
+ - name: Deploy component/telegram to doc repository
17
+ uses: peaceiris/actions-gh-pages@v3
18
+ with:
19
+ personal_token: ${{ secrets.PUSH_TOKEN }}
20
+ publish_branch: gh-pages
21
+ publish_dir: components/telegram
22
+ destination_dir: components/telegram
0 commit comments