feat: remove TeamDisplayName component and update UI to use team name #13
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: 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" |