Skip to content

feat: remove TeamDisplayName component and update UI to use team name #13

feat: remove TeamDisplayName component and update UI to use team name

feat: remove TeamDisplayName component and update UI to use team name #13

Workflow file for this run

name: Make Development Deployment
on:
push:
branches:
- dev
paths-ignore:
- .gitignore
- .github/**
- README.md
workflow_dispatch:
permissions:
contents: read
concurrency:
group: deployment-dev
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- run: npm ci
- name: Push schema changes to database
env:
TURSO_DATABASE_URL: ${{ secrets.DEV_DB_URL }}
TURSO_AUTH_TOKEN: ${{ secrets.DEV_DB_TOKEN }}
run: |
npx drizzle-kit migrate
- name: Make Development Deployment
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
run: |
npx vercel deploy --target preview --yes --token "$VERCEL_TOKEN"