admin管理员组文章数量:1347691
I have read the documentation, over and over and so I know the gitSource in the body is correct as it has all the required values of type, repoId and ref (I even tried with adding the sha too, which i fetch dynamically from github api)
I either get this error message: "The provided GitHub repository can't be found." or this message: "The provided GitHub repository does not contain the requested branch or commit reference. Please ensure the repository is not empty." - And i do not know why sometimes its one or the other even if the code is the same.
I know the ref is correct as the way i formatted it is how it comes back when I hit the github rest api - and the ID is correct as i've verified by looking at the source code on my github repo and seeing the id there (it is also fetched dynamically).
Here is the response code:
const deploymentResponse = await fetch(`=${teamId}`, {
method: "POST",
headers: {
Authorization: `Bearer ${vercelFullAccountApiToken}`,
"Content-Type": "application/json"
},
body: JSON.stringify({
name: branch,
gitSource: {
sha: gitBranchSha,
type: "github",
repoId: githubRepoIdString,
ref: `refs/heads/${branch}`
}
})
});
Can anyone see if there is an issue with the body or url and anything I missed?
(the sha is also fetched dynamically from said branch and is correct - although sha is not required so I can remove it and error is still same)
*the auth token I am using for vercel is scoped to full access for all accounts
本文标签:
版权声明:本文标题:next.js - Trying to create vercel deployment through vercel rest api but get always get error: "incorrect_git_source_in 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743840633a2548211.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论