Skip to content

Update at 2025-08-13T06:53:36.210Z #1

Update at 2025-08-13T06:53:36.210Z

Update at 2025-08-13T06:53:36.210Z #1

Workflow file for this run

name: Deploy to Vercel
on:
push:
workflow_dispatch: # on button click
permissions:
contents: write
jobs:
deploy-to-vercel:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ vars.BRANCH }}
- name: Deploy to Vercel
uses: amondnet/vercel-action@v25
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
vercel-args: '--prod'
github-token: ${{ secrets.GITHUB_TOKEN }}