You've already forked website-stats
mirror of
https://github.com/jakejarvis/website-stats.git
synced 2025-10-18 18:54:25 -04:00
initial commit
This commit is contained in:
17
.github/workflows/daily.yml
vendored
Normal file
17
.github/workflows/daily.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Daily snapshot
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 4 * * *' # run every day at 4 AM
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
snapshot:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 16
|
||||
- run: yarn install
|
||||
- run: yarn run daily
|
Reference in New Issue
Block a user