read cron (勿动) #131
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: read cron (暂时不使用) | |
on: | |
schedule: | |
# 每天 UTC 时间 18:00 运行 | |
- cron: "0 18 * * *" | |
workflow_dispatch: # 添加这行以允许手动触发 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 # 设置作业超时时间为20分钟 | |
strategy: | |
matrix: | |
node-version: [20.x] # 选择你需要的 Node.js 版本 | |
env: | |
# 在作业级别设置环境变量 | |
USERNAMES: ${{ secrets.USERNAMES }} | |
PASSWORDS: ${{ secrets.PASSWORDS }} | |
WEBSITE: ${{secrets.WEBSITE}} | |
steps: | |
- uses: actions/checkout@v3 # 检出你的仓库 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: | | |
npm install | |
sudo apt install -y xvfb | |
- name: Run auto read | |
run: node bypasscf.js # 替换为你想运行的脚本的实际名称 |