I am really looking for a (simple, straightforward) way to deploy a next.js application from an existing, private Gitlab repository and finished build pipeline to Vercel, but without uploading my sources or running builds on their systems; just the previously "built" next.js bundle.
Besides their popular repository integrations, which don't fit here, they also offer a CLI tool and an HTTP API for manual publishing.
The CLI tool, however, seems to push the whole repository to Vercel as well and won't deploy anything unless build-time information like "mand to install modules" etc. is provided.
The API is well-documented, but I guess it works the same way, and I couldn't find an example that explains which files I need to select for the upload (which requires a "list" of files).
I am really looking for a (simple, straightforward) way to deploy a next.js application from an existing, private Gitlab repository and finished build pipeline to Vercel, but without uploading my sources or running builds on their systems; just the previously "built" next.js bundle.
Besides their popular repository integrations, which don't fit here, they also offer a CLI tool and an HTTP API for manual publishing.
The CLI tool, however, seems to push the whole repository to Vercel as well and won't deploy anything unless build-time information like "mand to install modules" etc. is provided.
The API is well-documented, but I guess it works the same way, and I couldn't find an example that explains which files I need to select for the upload (which requires a "list" of files).
Share Improve this question edited Nov 3, 2021 at 20:29 serraosays 7,9393 gold badges38 silver badges68 bronze badges asked Apr 26, 2021 at 13:49 John GoofyJohn Goofy 1,02813 silver badges25 bronze badges 4- Hey! Lee from Vercel here. Could you share more about why this - are you concerned with repo access? – leerob Commented Apr 28, 2021 at 3:03
- 3 Hello @leerob, correct, the code is proprietary and there is already a full CI/CD in place which generates the next app, so the last missing bit is really just to deploy it to Vercel from there (preferably through a CLI tool) – John Goofy Commented Apr 28, 2021 at 8:44
- It's currently not possible to do this. It is on our roadmap, however. Please contact our support team to talk more about your requirements! vercel./contact – leerob Commented Apr 29, 2021 at 18:09
- @leerob +1 for that. I have a plex CI/CD pipeline and it is a huge pain to integrate it with Vercel right now. First I build my app in the pipeline before testing, and then it is built again at Vercel. And I have to duplicate all required ENV variables for both envionments. What I really need is a CLI mand that uploads the prebuilt app and starts it. – George Commented Nov 3, 2021 at 15:12
2 Answers
Reset to default 6You could also create a new project using a temporary repository – it can be some blank repo on GitHub, for example.
After the project exists, you can disconnect the Git repo, change the Framework preset and set up a CI pipeline to publish a pre-built/static HTML site there.
(I also find it strange that it's not possible to create a "blank" project via their web UI.)
It looks like a two step process in their docs, one call to POST /v2/now/files
uploads the assets and then POST /v12/now/deployments
to create the deployment from those assets.
Just run an async function in your build pipeline with a couple await calls to Vercel and you should be set. Super simplified example but if you build the client and handlers, it should look like this more or less I'd think:
// Assumes you put together a Vercel REST client and used the above endpoints
import { vercelClient } from '../lib/clients'
import { postFiles, createDeployment } from '../lib/handlers'
async function deployToVercel(files) {
let errors
await postFiles({ payload: files }).catch(err => { errors = err }
await createDeployment({ moreSettings: here }).catch(err => { errors = err }
}