deploy: simple-robot/simbot-component-telegram@013f55df9ded70e7d75f1c… #7
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
name: Deploy Telegram Snapshots KDoc Pages | |
on: | |
push: | |
branches: | |
- kdoc-deploy/snapshots/component-telegram | |
jobs: | |
deploy-telegram-snapshots-kdoc-pages: | |
name: deploy-telegram-snapshots-kdoc-pages | |
runs-on: ubuntu-latest | |
steps: | |
# 检出仓库代码 | |
- uses: actions/checkout@v4 | |
# https://github.com/marketplace/actions/github-pages-action | |
- name: Deploy snapshots/components/telegram to doc repository | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
personal_token: ${{ secrets.PUSH_TOKEN }} | |
publish_branch: gh-pages | |
# 前缀为 snapshots | |
publish_dir: snapshots/components/telegram | |
destination_dir: snapshots/components/telegram |