Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
arrow-up-circle

GitHub Action

Vercel Actions

v1.0.1

Vercel Actions

arrow-up-circle

Vercel Actions

Deploy to Vercel with GitHub Actions

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Vercel Actions

uses: nexterias/actions-vercel@v1.0.1

Learn more about this action in nexterias/actions-vercel

Choose a version

actions-vercel

CI

Deploy to Vercel with GitHub Actions

Usage

name: Deploy

on:
  push:
  pull_request:

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

    steps:
      - uses: actions/checkout@v3

      - uses: nexterias/actions-vercel@v1
        with:
          token: ${{ secrets.YOUR_VERCEL_TOKEN }}
          org-id: ${{ secrets.YOUR_VERCEL_ORG_ID }}
          project-id: ${{ secrets.YOUR_VERCEL_PROJECT_ID }}
          github-token: ${{ secrets.GITHUB_TOKEN }}
          production: ${{ github.ref == 'refs/heads/main' }}
          prebuilt: true # If set to true, build will be performed using GitHub Actions.