From 4ff451a02246c5efc7823229e597be8eafd9cba2 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Fri, 20 Jan 2023 23:07:36 +0000 Subject: [PATCH] Trigger Vercel deploy daily on cron --- .github/workflows/deploy.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..ef1febf --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,13 @@ +name: Deploy to Vercel + +on: + schedule: + # Daily + - cron: 0 0 * * * + +jobs: + build: + name: Execute Webhook + runs-on: ubuntu-latest + steps: + - run: curl -X POST -d {} ${{ secrets.DEPLOY_WEBHOOK }} \ No newline at end of file