Sync Data #111
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: Sync Data | |
| on: | |
| schedule: | |
| # 每天凌晨 2 点运行 | |
| - cron: '0 2 * * *' | |
| workflow_dispatch: # 允许手动触发 | |
| jobs: | |
| sync-articles: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Start Sync Data | |
| env: | |
| API_KEY: ${{ secrets.API_KEY }} | |
| run: | | |
| curl -X GET "https://blog.vaebe.cn/api/sync-data" -H "x-api-key: $API_KEY" |