Trigger Netlify Build #545
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger Netlify Build | |
on: | |
workflow_dispatch: | |
schedule: | |
# Run at 0000 daily | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
name: Request Netlify Webhook | |
runs-on: ubuntu-latest | |
steps: | |
- name: Curl request | |
run: curl -X POST -d {} ${{ secrets.NETLIFY_DEPLOY_WEBHOOK }} |