mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-09 17:42:19 +00:00
3a94870531
this will make it possible to schedule posts for future publish dates
14 lines
308 B
YAML
14 lines
308 B
YAML
name: Daily build
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 13 * * *"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger build webhook on Netlify
|
|
run: curl -s -X POST "https://api.netlify.com/build_hooks/${TOKEN}"
|
|
env:
|
|
TOKEN: ${{ secrets.NETLIFY_CRON_BUILD_HOOK }}
|