mirror of
https://github.com/jbowdre/virtuallypotato.git
synced 2024-11-21 14:32:19 +00:00
Merge branch 'main' of github.com:jbowdre/virtuallypotato
This commit is contained in:
commit
4728a9912e
1 changed files with 14 additions and 0 deletions
14
.github/workflows/daily_build.yml
vendored
Normal file
14
.github/workflows/daily_build.yml
vendored
Normal 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 }}
|
Loading…
Reference in a new issue