mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-18 18:59:15 +08:00
24 lines
427 B
YAML
24 lines
427 B
YAML
name: Auto Refresh
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '*/20 0-17,22,23 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: lts/*
|
|
|
|
- name: Refresh
|
|
env:
|
|
JWT_TOKEN: ${{ secrets.JWT_TOKEN }}
|
|
run: npx tsx ./scripts/refresh.ts
|