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