使用 Netlify API 重新部署具有最新 git 提交的站点中的分支
我使用 Gridsome 进行静态站点生成,并将 Bitbucket 与 Netlify 集成,因此当我添加新提交时,它会直接使用最新提交重新部署我的站点。 有时我需要重新部署而不对项目文件进行任何更改,只是为了获取数据库中的最新更改。
我想在点击时向我的网站添加一个按钮,它使用 Netlify API 进行最新 Git 提交的重新部署,我如何使用 Netlify API 做到这一点?
I use Gridsome for Static Site Generation and I integrated Bitbucket with Netlify, so when I add a new commit it directly redeploys my site with the latest commit.
Sometimes I need to redeploy without any changes in the project files, just to get the latest changes in the Database.
I want to add a button to my site when click, it uses Netlify API for redeploying with the latest Git commit, How can I do that with Netlify API?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获得与上次提交或上次部署相同的重新部署行为
首先,我必须获取此分支的最后一个部署 ID
,然后我们使用此代码重试此特定部署。
To get the same behavior of redeploying with last commit or last deploy
First, I have to get the last deploy id for this branch
Then we retry this specific deployment with this code.