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