Skip to content

support generic Postgres providers (#1055) #2

support generic Postgres providers (#1055)

support generic Postgres providers (#1055) #2

name: Prebuild Next.js Boilerplate Example
on:
push:
branches:
- main
workflow_dispatch:
inputs:
jobs:
clone-build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN_PULL_REQUESTS }}
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- run: |
node --version
npm --version
- run: |
npm install -g vercel@latest
vc --version
- working-directory: ./framework-boilerplates/nextjs
run: |
npm ci
env:
NPM_CONFIG_LOGLEVEL: http
- working-directory: ./framework-boilerplates/nextjs
run: |
vc build --debug --token $VERCEL_TOKEN --yes --prod
env:
VERCEL_PROJECT_ID: prj_qav3SWw0ZQDfehj7w47xPaBESx8P
VERCEL_TOKEN: ${{ secrets.VERCEL_EXAMPLES_TOKEN }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_EXAMPLES_ORG_ID }}
- working-directory: ./framework-boilerplates/nextjs
run: |
vc deploy --debug --token $VERCEL_TOKEN --yes --prod --prebuilt --archive=tgz
env:
VERCEL_PROJECT_ID: prj_qav3SWw0ZQDfehj7w47xPaBESx8P
VERCEL_TOKEN: ${{ secrets.VERCEL_EXAMPLES_TOKEN }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_EXAMPLES_ORG_ID }}