雷神自动停止加速 #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 雷神自动停止加速 | |
on: | |
push: | |
schedule: | |
# 定时任务,北京时间24点执行任务 16 + 8 = 24 | |
- cron: '0 16 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js 10.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 10.x | |
- name: npm install | |
run: | | |
npm install | |
- name: "雷神加速器暂停脚本" | |
run: | | |
node main.js | |
env: | |
LEISHEN_USERNAME: ${{ secrets.LEISHEN_USERNAME }} | |
LEISHEN_PASSWORD: ${{ secrets.LEISHEN_PASSWORD }} |