---
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"
published: 2025-11-03
last_updated: 2026-05-26
authors: Lee Robinson
related: []
install_vercel_plugin: npx plugins add vercel/vercel-plugin
---
<!-- docsgraph:related -->
## Related pages

> **For AI agents:** Follow these links to understand how this page connects to the rest of the Vercel ecosystem. For the full cross-link map (inbound, outbound, prerequisites, and semantic neighbors), see the .graph.md link below.

- [Can I use self-managed GitLab with Vercel?](https://vercel.com/kb/guide/can-i-use-self-managed-gitlab-with-vercel?from=related) — You can use self-managed GitLab and GitHub Pipelines to deploy your application to Vercel.
- [Can I use Bitbucket Data Center with Vercel?](https://vercel.com/kb/guide/can-i-use-bitbucket-data-center-with-vercel?from=related) — You can use Bitbucket Data Center and Bitbucket Pipelines to deploy your application to Vercel.
- [How can I use Vercel with GitHub IP restrictions?](https://vercel.com/kb/guide/use-vercel-with-github-ip-restrictions?from=related) — This guide will describe how you can use Vercel even when you have an IP allowlist configured in GitHub.
- [How can I use the Vercel CLI for custom workflows?](https://vercel.com/kb/guide/using-vercel-cli-for-custom-workflows?from=related) — You can use the Vercel CLI to deploy any application, including custom git providers and restricted source code.
- [Can you deploy based on tags/releases on Vercel?](https://vercel.com/kb/guide/can-you-deploy-based-on-tags-releases-on-vercel?from=related) — Learn how to deploy based on tags/releases on Vercel.

Full cross-link map for this page: [/kb/guide/can-i-use-github-enterprise-server-with-vercel.graph.md](/kb/guide/can-i-use-github-enterprise-server-with-vercel.graph.md)
<!-- /docsgraph:related -->


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.

* * *