Skip to content

Commit

Permalink
Add vercel deployment workflow as part of the CI/CD pipelilne
Browse files Browse the repository at this point in the history
  • Loading branch information
kntjspr committed Sep 30, 2024
1 parent dc6ed22 commit 96f4a26
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/deploy.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Trigger Vercel Deployment

on:
push: # This will trigger the action on every commit (push)
branches:
- main # You can specify which branch to monitor (e.g., "main" or any other branch)

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Trigger Vercel Deploy
run: curl -X POST "https://api.vercel.com/v1/integrations/deploy/prj_Wlv8UGIoHjqDNr58Y9OaRPDGxg38/YkeQakRRLu"

0 comments on commit 96f4a26

Please sign in to comment.