如何使用 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:
nbauma109@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
我按照此处的所有步骤创建 public/private 密钥,将 public 密钥上传到我的 github 帐户并将私钥添加到 ssh 代理:
我用发布插件配置和 scm 连接设置更新了 maven POM :
<scm>
<connection>scm:git:https://github.com/nbauma109/netbeans-visual-diff-standalone.git</connection>
<developerConnection>scm:git:ssh://git@github.com/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://git@github.com/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 密钥信息、密码并将 public 密钥的内容粘贴在里面“内容”标签:
<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 nbauma109@github.com</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(public键)
- 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
此外,我遇到了一些类似的 post how to resolve Permission denied (publickey) when maven release used 并且 OP 说他通过将 public 键添加到 POM 中的 developerConnection/push 部分来解决了这个问题文件,但我从未见过这样的东西,我不认为它是那个地方。
编辑(@VonC 的回答后):将用户从 nbauma109 更改为 git,并更新 POM 和 maven settings.xml,我现在有两个回购协议,github.com使用私钥身份验证,以及 pkg.github.com 使用个人令牌身份验证。现在我可以将标签推送到 github.com 并且我可以将包推送到 Github 包 (pkg.github.com) 提供我的个人令牌 github_personal_token 有 'write package' 许可。
现在我的问题是我推送了一个未经身份验证任何人都无法访问的包,并且我的发布标签中没有其他项目可以使用的二进制文件。除了使用 Github 网络 GUI 将我的二进制文件手动重新上传到发布标签之外,我没有其他选择吗?
只要看到 nbauma109@github.com
,就可以确定 SSH 推送会失败(从命令行或 maven)
A GitHub SSH URL 总是 使用远程用户“git
”:git@github.com:...
,从不使用实际的GitHub 用户帐户名:您的 public 注册到所述 GitHub 帐户的密钥假设用于验证您的身份。
所以开始测试:
<username>git</username>
作为 by the OP Sybuser
I have a solution without GitHub packages, which is to:
- configure maven
release
plugin with <goals>install</goals>
, and
- use a GitHub action for the maven release (for example
qcastel/github-actions-maven-release
)
- and a GitHub action for GitHub release (for example
marvinpinto/action-automatic-releases
).
我可以使用 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:
nbauma109@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
我按照此处的所有步骤创建 public/private 密钥,将 public 密钥上传到我的 github 帐户并将私钥添加到 ssh 代理:
我用发布插件配置和 scm 连接设置更新了 maven POM :
<scm>
<connection>scm:git:https://github.com/nbauma109/netbeans-visual-diff-standalone.git</connection>
<developerConnection>scm:git:ssh://git@github.com/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://git@github.com/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 密钥信息、密码并将 public 密钥的内容粘贴在里面“内容”标签:
<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 nbauma109@github.com</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(public键)
- 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
此外,我遇到了一些类似的 post how to resolve Permission denied (publickey) when maven release used 并且 OP 说他通过将 public 键添加到 POM 中的 developerConnection/push 部分来解决了这个问题文件,但我从未见过这样的东西,我不认为它是那个地方。
编辑(@VonC 的回答后):将用户从 nbauma109 更改为 git,并更新 POM 和 maven settings.xml,我现在有两个回购协议,github.com使用私钥身份验证,以及 pkg.github.com 使用个人令牌身份验证。现在我可以将标签推送到 github.com 并且我可以将包推送到 Github 包 (pkg.github.com) 提供我的个人令牌 github_personal_token 有 'write package' 许可。
现在我的问题是我推送了一个未经身份验证任何人都无法访问的包,并且我的发布标签中没有其他项目可以使用的二进制文件。除了使用 Github 网络 GUI 将我的二进制文件手动重新上传到发布标签之外,我没有其他选择吗?
只要看到 nbauma109@github.com
,就可以确定 SSH 推送会失败(从命令行或 maven)
A GitHub SSH URL 总是 使用远程用户“git
”:git@github.com:...
,从不使用实际的GitHub 用户帐户名:您的 public 注册到所述 GitHub 帐户的密钥假设用于验证您的身份。
所以开始测试:
<username>git</username>
作为
I have a solution without GitHub packages, which is to:
- configure maven
release
plugin with<goals>install</goals>
, and- use a GitHub action for the maven release (for example
qcastel/github-actions-maven-release
)- and a GitHub action for GitHub release (for example
marvinpinto/action-automatic-releases
).