Merge pull request #848 from jsonwebtoken/jt/fix-branch-name #1
This file contains hidden or 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 Production Deployment | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
on: | |
push: | |
branches: | |
- master | |
- production | |
jobs: | |
Deploy-Production: | |
runs-on: | |
labels: ubuntu-latest | |
steps: | |
- name: Checkout the Codebase | |
uses: actions/checkout@v4 | |
- name: Install Vercel CLI | |
run: npm install --global vercel@latest | |
- name: Deploy on Vercel | |
id: deploy | |
run: | | |
vercel deploy --prod --token=${{ secrets.VERCEL_ACCESS_TOKEN }} |