---
title: Can I use GitHub Enterprise Server with Vercel?
description: You can use GitHub Enterprise Server and GitHub Actions to deploy your application to Vercel.
url: /kb/guide/can-i-use-github-enterprise-server-with-vercel
canonical_url: "https://vercel.com/kb/guide/can-i-use-github-enterprise-server-with-vercel"
last_updated: 2026-05-26
authors: Lee Robinson
related: []
install_vercel_plugin: npx plugins add vercel/vercel-plugin
---

Yes, you can use GitHub Enterprise Server with GitHub Actions to build and deploy your Vercel Application.

`vercel build` allows you to build your project inside GitHub Actions, without exposing your source code to Vercel. Then, `vercel deploy --prebuilt` skips the build step on Vercel and uploads the previously generated `.vercel/output` folder to Vercel from the GitHub Action.

[Learn more about how to configure GitHub Actions and Vercel](https://vercel.com/guides/how-can-i-use-github-actions-with-vercel) for custom CI/CD workflows.

* * *