This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-astro/.github/workflows/scheduled-deploy.yaml

17 lines
334 B
YAML

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}}"