Skip to content

removed supabaseAdmin #23

removed supabaseAdmin

removed supabaseAdmin #23

Workflow file for this run

name: Deploy to Vercel
on:
push:
branches: ['deployed']
jobs:
deploy:
environment: 'Production'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # or whatever version you're using.
- name: Install dependencies
run: npm ci
- name: Deploy to Vercel
run: npx vercel --prod --token ${{ secrets.VERCEL_TOKEN }}
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}