提问人:Sybuser 提问时间:4/5/2021 最后编辑:Sybuser 更新时间:4/14/2022 访问量:3663
如何使用 maven 发布插件将发布推送到 github?
How do I push a release to github with the maven release plugin?
问:
我能够使用 SSH 很好地推送到我的 Gihub 存储库,但是当我尝试在准备阶段使用 maven 发布插件推送时出现错误:
Failed to execute goal org.apache.maven.plugins:maven-release-plugin:3.0.0-M1:prepare (default-cli) on project netbeans-visual-diff-standalone: Unable to commit file
Caused by: org.apache.maven.shared.release.scm.ReleaseScmCommandException: Unable to commit files
Provider message:
The git-push command failed.
Command output:
[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.
我按照这里的所有步骤创建公钥/私钥,将公钥上传到我的 github 帐户并将私钥添加到 ssh 代理:
我使用发布插件配置和 scm 连接设置更新了 maven POM:
<scm>
<connection>scm:git:https://github.com/nbauma109/netbeans-visual-diff-standalone.git</connection>
<developerConnection>scm:git:ssh://[email protected]/nbauma109/netbeans-visual-diff-standalone.git</developerConnection>
<url>https://github.com/nbauma109/netbeans-visual-diff-standalone</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>pkg.github.com</id>
<name>GitHub nbauma109 Apache Maven Packages</name>
<url>https://maven.pkg.github.com/nbauma109/mvn-repo</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<tagBase>ssh://[email protected]/nbauma109/netbeans-visual-diff-standalone/tags</tagBase>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.scm.id>github.com</project.scm.id>
</properties>
在 MAVEN 用户 ~/.m2/settings.xml 文件中,我包含带有私钥位置、密码的 ssh 密钥信息,并将公钥的内容粘贴到“contents”标签中:
<servers>
<server>
<id>github.com</id>
<username>git</username>
<privateKey>${user.home}/.ssh/id_ed25519</privateKey>
<passphrase>censored</passphrase>
<filePermissions>664</filePermissions>
<directoryPermissions>775</directoryPermissions>
<configuration>
<knownHostsProvider implementation="org.apache.maven.wagon.providers.ssh.knownhost.SingleKnownHostProvider">
<hostKeyChecking>yes</hostKeyChecking>
<contents>ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDqdqJcRAZvJvTVWRXBlFB/c+w8pZPFRoWNXKFp6CSTV [email protected]</contents>
</knownHostsProvider>
</configuration>
</server>
<server>
<id>pkg.github.com</id>
<username>nbauma109</username>
<password>github_personal_token</password>
</server>
</servers>
在knowns_hosts文件中,我添加了 localhost 和我的 IP。 我在 ~/.ssh 下有 3 个文件:
- id_ed25519(私钥)
- id_ed25519.pub(公钥)
- known_hosts
使用 ssh-add ~/.ssh/id_ed25519 将我的密钥添加到 ssh 代理后,我在 git-bash 中使用以下命令启动发布插件:
mvn -X -Dusername=git release:clean release:prepare release:perform
当系统提示我输入版本和标记信息时,我只需按回车键即可选择默认值。
- 发布版本:2.0.1
- 下一个开发版本:2.0.2-SNAPSHOT
此外,我还遇到了一些类似的帖子,当使用 maven 版本时如何解决权限被拒绝(公钥),OP 说他通过将公钥添加到 POM 文件中的 developerConnection/push 部分来解决这个问题,但我从未见过这样的事情,我不认为这是那个地方。
编辑(在@VonC的回答之后):将用户从 nbauma109 更改为 git 并更新 POM 和 maven 设置.xml后,我现在有两个存储库,github.com 使用私钥身份验证,pkg.github.com 使用个人令牌身份验证。现在,我可以将标签推送到 github.com,并且能够将包推送到 Github 包 (pkg.github.com),前提是我的个人令牌github_personal_token具有“写入包”权限。
现在我的问题是,我已经推送了一个包,如果没有身份验证,任何人都无法访问该包,并且我的发布标签中没有其他项目可以使用的二进制文件。除了使用 Github Web GUI 手动将我的二进制文件重新上传到发布标签之外,我别无选择吗?
答:
只要你看到,你就可以确定SSH推送会失败(从命令行或maven)[email protected]
GitHub SSH URL 将始终使用远程用户 '': ,从不使用实际的 GitHub 用户帐户名称:您注册到所述 GitHub 帐户的公钥应该对您进行身份验证。git
[email protected]:...
因此,请从以下方面开始测试:
<username>git</username>
正如 OP Sybuser 所评论的那样
我有一个没有 GitHub 包的解决方案,那就是:
- 使用 配置 Maven 插件,以及
release
<goals>install</goals>
- 对 maven 版本使用 GitHub 操作(例如
qcastel/github-actions-maven-release
)- 以及 GitHub 版本的 GitHub 操作(例如
marvinpinto/action-automatic-releases
)。
评论