mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 03:09:14 +08:00
21 lines
346 B
YAML
21 lines
346 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/*
|
|
|
|
- run: npx tsx ./scripts/refresh.ts
|