mirror of
https://github.com/CatimaLoyalty/Website.git
synced 2025-12-28 05:14:29 +00:00
15 lines
327 B
YAML
15 lines
327 B
YAML
name: Trigger Netlify Build
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Run at 0815 daily
|
|
- cron: '15 8 * * *'
|
|
jobs:
|
|
build:
|
|
name: Request Netlify Webhook
|
|
environment: "daily_rebuild"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Curl request
|
|
run: curl -X POST -d {} ${{ secrets.NETLIFY_BUILD_HOOK }}
|