feat: cloudflare -> netlify
This commit is contained in:
parent
a7e0b36d82
commit
a74ea3644d
41 changed files with 2021 additions and 2395 deletions
17
.github/workflows/scheduled-deploy.yaml
vendored
Normal file
17
.github/workflows/scheduled-deploy.yaml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: Scheduled deploy
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 * * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
trigger-netlify-build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Trigger Netlify Build Hook
|
||||
run: |
|
||||
curl -X POST -d '{}' \
|
||||
-H "Content-Type: application/json" \
|
||||
"${{secrets.DEPLOY_HOOK}}"
|
Reference in a new issue