-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
name: Run Python Script | ||
name: Run Python Script and Commit CSV | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- main # 触发动作的分支 | ||
schedule: | ||
# 每天运行一次,可以按需调整 | ||
# 每天UTC时间00:00运行,按需调整 | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
build: | ||
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 版本 | ||
python-version: '3.8' # 你的 Python 版本 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
|
@@ -28,8 +29,18 @@ jobs: | |
run: | | ||
python -c "import pywencai; res = pywencai.get(question='退市股票', loop=True); res.to_csv('问财.csv', index=False, encoding='utf-8-sig'); print(res)" | ||
- name: Upload result | ||
- name: Upload CSV as Artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: wencai-results | ||
path: 问财.csv | ||
|
||
- 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 问财.csv | ||
git commit -m 'Automatically update and commit 问财.csv' || echo "No changes to commit" | ||
git push origin HEAD:${{ github.ref }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |