fanfou_backup #732
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: fanfou_backup | |
# Controls when the workflow will run | |
on: | |
schedule: | |
- cron: 0 10 * * * | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
backup: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Setup Python requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip3 install -r requirements.txt | |
- name: Backup JSON & images | |
env: | |
API_KEY: ${{ secrets.API_KEY }} | |
API_SECRET: ${{ secrets.API_SECRET }} | |
USERNAME: ${{ secrets.USERNAME }} | |
PASSWORD: ${{ secrets.PASSWORD }} | |
run: | | |
# python ./test_action.py ~FgPOFSnmkW8 | |
python ./backup_json.py | |
- name: Commit & push | |
run: | | |
git config --global user.name 'kingcos' | |
git config --global user.email '2821836721v@gmail.com' | |
git add -A | |
git diff --cached --exit-code || git commit -m '[Actions]Update' | |
git push |