feat: migrate to vercel

This commit is contained in:
Barrett Ruth 2026-02-18 09:15:36 -05:00
parent 72847b3dad
commit 91274e2851
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
8 changed files with 418 additions and 53 deletions

View file

@ -2,8 +2,6 @@ name: ci
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest

View file

@ -1,30 +0,0 @@
name: deploy
on:
workflow_run:
workflows: ["ci"]
types:
- completed
jobs:
deploy:
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.workflow_run.head_sha }}
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- run: pnpm install
- run: pnpm build
- uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-2
- run: chmod +x scripts/deploy.sh && scripts/deploy.sh
- env:
AWS_CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.AWS_CLOUDFRONT_DISTRIBUTION_ID }}
run: chmod +x scripts/invalidate.sh && scripts/invalidate.sh