Daily Job(freetv) #3
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: 'Daily Job(freetv)' | |
on: | |
schedule: | |
- cron: '0 4 * * *' # 每天UTC时间04:00运行 | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: 'Daily Job(freetv)' | |
required: true | |
default: 'production' | |
jobs: | |
run_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
- name: Run Python script | |
run: python assets/freetv/freetv.py | |
- name: Commit changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions" | |
git add assets/freetv/freetv_output.txt | |
git commit -m ":tada: AutoUpdate(Freetv) $(date +'%Y%m%d')" | |
current_datetime=$(date +"%Y%m%d_%H%M%S") | |
cp assets/freetv/freetv_output.txt history/freetv/"${current_datetime}_freetv_output.txt" | |
git add history/freetv/"${current_datetime}_freetv_output.txt" | |
git commit -m "(freetv)Archive file with timestamp" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |