feat: 新增使用帮助页面并集成到主页 #1
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: Baidu URL Push | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'index.html' | |
| - 'pro.html' | |
| - 'sitemap.xml' | |
| jobs: | |
| push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: pip install requests | |
| - name: Run Baidu push script | |
| env: | |
| BAIDU_TOKEN: ${{ secrets.BAIDU_TOKEN }} | |
| run: python baidu_push.py |