virtuallypotato/.github/workflows/daily_build.yml

15 lines
309 B
YAML
Raw Normal View History

2023-02-20 20:21:01 +00:00
name: Daily build
on:
schedule:
2023-02-20 20:23:29 +00:00
- cron: "25 20 * * *"
2023-02-20 20:21:01 +00:00
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 }}