-
Notifications
You must be signed in to change notification settings - Fork 11
48 lines (40 loc) · 1.25 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Run Python Script and Commit CSV
on:
push:
branches:
- main # 触发动作的分支
schedule:
# 每天UTC时间00:00运行,按需调整
- cron: '0 0 * * *'
jobs:
build-and-commit-csv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8' # 你的 Python 版本
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pywencai
- name: Run Python script
run: |
python popularity.py
env:
CSV_FILE_NAME: ${{ secrets.CSV_FILE_NAME }}
- name: Upload CSV as Artifact
uses: actions/upload-artifact@v2
with:
name: wencai-results
path: ${{ secrets.CSV_FILE_NAME }}
- name: Commit and Push CSV to Repository
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -f ${{ secrets.CSV_FILE_NAME }}
git commit -m 'Automatically update and commit ${{ secrets.CSV_FILE_NAME }}' || echo "No changes to commit"
git push origin HEAD:${{ github.ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}