This commit is contained in:
GamerNoTitle 2020-11-07 19:26:17 +08:00
commit 2baefa2d59
3 changed files with 33 additions and 0 deletions

32
.github/workflows/AutoSignin.yml vendored Normal file
View File

@ -0,0 +1,32 @@
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 }}

0
main.py Normal file
View File

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
requests