Ship the mobile pause visibility and compact overlay fix as v1.1.11 #95
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: Vercel Deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| deploy-production: | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
| runs-on: ubuntu-latest | |
| env: | |
| VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
| VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
| VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.5 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Pull Vercel environment information | |
| run: bunx vercel@latest pull --yes --environment=production --token="${VERCEL_TOKEN}" | |
| - name: Build Vercel prebuilt output | |
| run: bunx vercel@latest build --prod --token="${VERCEL_TOKEN}" | |
| - name: Check bundle budget | |
| run: bun run bundle:check | |
| - name: Deploy production to Vercel | |
| run: bunx vercel@latest deploy --prebuilt --prod --token="${VERCEL_TOKEN}" |