Compare commits

..

No commits in common. "13c8bdccfa8c770a0e48a9f4e33cbdd9e68d2f65" and "7a67dad462597fc00bb802c03d426579409b5ec8" have entirely different histories.

14
.github/workflows/daily_build.yml vendored Normal file
View file

@ -0,0 +1,14 @@
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 }}