run #58
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: run | |
on: | |
workflow_dispatch: | |
push: | |
schedule: | |
- cron: 10 16 * * * | |
# 每天北京时间 00:10 会自动签到 | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: npm ci | |
- run: npm run main | |
env: | |
GLADOS: ${{ secrets.GLADOS }} | |
NOTIFY: ${{ secrets.NOTIFY }} |