-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (40 loc) · 1.43 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: 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