Skip to content

Post-GIM updates

Post-GIM updates #8

Workflow file for this run

# Using this to deploy instead of Vercel's GitHub integration because the
# actual integration requires a paid Vercel account.
name: Vercel Production Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches:
- main
jobs:
prod-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prod --no-wait --token=${{ secrets.VERCEL_TOKEN }}