Nightly Deployment #97
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: Nightly Deployment | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Trigger Netlify Deployment | |
runs-on: ubuntu-latest | |
steps: | |
- name: Call Netlify Build Hook | |
shell: bash | |
run: | | |
curl -X POST -d '{}' ${{ secrets.NETLIFY_BUILD_HOOK }} |