Run Python Script and Commit CSV #31
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: 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 }} |