Daily deploy trigger #208
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: Daily deploy trigger | |
on: | |
schedule: | |
- cron: '20 4 * * *' # will run every day at 04:20 | |
jobs: | |
cron: | |
runs-on: ubuntu-latest | |
steps: | |
- name: curl | |
uses: wei/curl@v1 | |
with: | |
args: -X POST ${{ secrets.VERCEL_DEPLOY_HOOK }} |