wyycg-AutoCheckin/.github/workflows/AutoSignin.yml
2020-11-22 09:06:35 +08:00

43 lines
952 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: set var
run: |
echo ${{ secrets.cookie }} > cookie.txt
echo ${{ secrets.teleid }} > teleid.txt
echo ${{ secrets.teletoken }} > teletoken.txt
- name: Run script
run: |
python3 main.py
- name: remove var
run: |
rm cookie.txt
rm teleid.txt
rm teletoken.txt