33 lines
686 B
YAML
33 lines
686 B
YAML
name: AutoSignin
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
# branches:
|
|
# - master
|
|
schedule:
|
|
- cron: "0 4,16 * * *"
|
|
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@v1
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install requests #安装requests
|
|
run: |
|
|
pip install -r requirements.txt
|
|
- name: Run script
|
|
run: |
|
|
python3 main.py ${{ secrets.cookie }}
|