gpt4 book ai didi

git - 代码构建将 Artifact 推回 github 的问题

转载 作者:行者123 更新时间:2023-12-04 18:57:23 25 4
gpt4 key购买 nike

我正在尝试运行 maven release:prepare with aws code build 并收到一条错误消息

The git-push command failed.
Command output:
error: cannot run ssh: No such file or directory
fatal: unable to fork

也尝试传递公钥和私钥,这也不起作用
有没有办法使用 github 用户名和密码而不是 ssh key 将代码推回 github

最佳答案

似乎 ssh运行 AWS CodeBuild 时,客户端未在您的 PATH 上安装或可用。尝试在构建开始时添加一个命令来安装 ssh-client .例如,如果您正在使用构建规范,例如:

...
phases:
install:
commands:
...
- apt-get update -y
- apt-get install -y ssh-client
...

http://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html

关于git - 代码构建将 Artifact 推回 github 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47209981/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com