35 lines
742 B
Plaintext
35 lines
742 B
Plaintext
name: AutoCheckin
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [published]
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
# branches:
|
|
# - master
|
|
schedule:
|
|
- cron: "0 2 * * *"
|
|
watch:
|
|
types: [started]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
# if: github.event.repository.owner.id == github.event.sender.id # 自己点的 start
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
- name: Set up Python #安装python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
- name: Install requirements #安装轮子
|
|
run: |
|
|
pip install -r requirements.txt
|
|
- name: Run script
|
|
env:
|
|
config: ${{ secrets.SRC_CONFIG }}
|
|
run: |
|
|
python3 main.py |