update #19
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: Read the Docs | |
on: | |
push: | |
branches: | |
- main # 根据你的仓库设置选择正确的分支 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Trigger Read the Docs build | |
run: | | |
curl -X POST -d "" https://readthedocs.org/api/v3/projects/socialed/builds/ \ | |
-H "Authorization: Token ${{ secrets.RTD_TOKEN }}" | |
env: | |
RTD_TOKEN: ${{ secrets.RTD_TOKEN }} |