Vercel deploy hook #18
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: Vercel deploy hook | |
on: | |
schedule: | |
# Rebuid the site every day at 00:00 UTC to update the projects data | |
- cron: '0 0 * * *' | |
jobs: | |
Vercel-Deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger Vercel deploy hook | |
run: | | |
curl -X POST ${{ secrets.VERCEL_DEPLOY_HOOK }} |