Skip to content

EveryDay Checking

EveryDay Checking #93

Workflow file for this run

name: "EveryDay Checking"
on:
schedule:
# 分(0-59) 小时(0-23) 日期(1-31) 月份(1-12) 星期(0-7) 年(可选字段)
- cron: "06 22 * * *" #scheduled at 00:10 (UTC+8) everyday UTC+8比UTC快8个小时
workflow_dispatch:
env:
RUN_ENV: 'prod'
jobs:
build:
runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/master'
steps:
- name: Checkout master
uses: actions/checkout@v2
with:
fetch-depth: 0
# ref: master
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Random sleep
if: github.event_name == 'schedule'
run: sleep $(shuf -i 10-100 -n 1)
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run sign
env:
SCKEY: ${{ secrets.SCKEY }}
EMAIL: ${{ secrets.EMAIL }}
PASSWD: ${{ secrets.PASSWD }}
run: |
python3 ./main.py