mirror of
https://github.com/danbulant/design
synced 2026-05-19 04:08:46 +00:00
14 lines
307 B
YAML
14 lines
307 B
YAML
name: rebuild website daily
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 23 * * *'
|
|
|
|
jobs:
|
|
daily-rebuild:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: send digests
|
|
uses: wei/curl@v1
|
|
with:
|
|
args: 'https://api.cloudflare.com/client/v4/pages/webhooks/deploy_hooks/${{secrets.DEPLOY_HOOK}}'
|