Skip to content

prebuilt

vercel buildvercel deploy --prebuiltを使用するためのオプションです。

GitHub Actions側でビルドを行い、そのデータをVercelにデプロイする場合はtrueに設定してください。

注意

ビルドに必要なソフトウェア(Node.js等)が正しくインストールされていないと機能しません。

使用例

yml
name: Vercel

on:
  push:
    branches: [main]
  pull_request:

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

jobs:
  deploy:
    name: Deploy
    runs-on: ubuntu-latest
    permissions:
      contents: read
      deployments: write
      statuses: write
      pull-requests: write

    steps:
      - uses: actions/checkout@v4

      - uses: nexterias/actions-vercel@v1
        with:
          token: ${{ secrets.VERCEL_TOKEN }}
          org-id: ${{ secrets.VERCEL_ORG_ID }}
          project-id: ${{ secrets.VERCEL_PROJECT_ID }}
          production: ${{ github.ref == 'refs/heads/main' }}
          prebuilt: true