Skip to content

Fix create token http response status code #84

Fix create token http response status code

Fix create token http response status code #84

Workflow file for this run

name: Deploy to Vercel
on:
push:
branches:
- master
env:
NODE_VERSION: 22
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
HUSKY: 0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install Vercel CLI
run: npm install -g vercel
- name: Deploy to Vercel
run: vercel deploy --no-wait --prod --token=${{ secrets.VERCEL_TOKEN }}