Skip to content

run

run #88

Workflow file for this run

name: run
on:
workflow_dispatch:
# push:
schedule:
- cron: 1 16 * * *
jobs:
run:
runs-on: ubuntu-latest
timeout-minutes: 50
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm run install
- run: npm run main
env:
TOKEN: ${{ secrets.TOKEN }}
USERID: ${{ secrets.USERID }}