We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00db74c commit 62ecca7Copy full SHA for 62ecca7
1 file changed
.github/workflows/deploy-main-v5-kdoc.yml
@@ -0,0 +1,22 @@
1
+name: Deploy Main V5 KDoc Pages
2
+on:
3
+ push:
4
+ branches: 'kdoc-deploy/main-v5'
5
+
6
+jobs:
7
+ deploy-main-v5-kdoc-pages:
8
+ name: deploy-main-v5-kdoc-pages
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ # 检出仓库代码
12
+ - uses: actions/checkout@v4
13
14
+ # https://github.com/marketplace/actions/github-pages-action
15
+ - name: Deploy main-v5 to doc repository
16
+ uses: peaceiris/actions-gh-pages@v3
17
+ with:
18
+ personal_token: ${{ secrets.PUSH_TOKEN }}
19
+ publish_branch: gh-pages
20
+ # 前缀为 snapshots
21
+ publish_dir: main-v5
22
+ destination_dir: main-v5
0 commit comments