【问题标题】:How do I push a release to github with the maven release plugin?如何使用 maven 发布插件将发布推送到 github?
【发布时间】:2021-04-04 18:50:33
【问题描述】:

我可以使用 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.

我按照这里的所有步骤创建公钥/私钥,将公钥上传到我的 github 帐户并将私钥添加到 ssh 代理:

https://docs.github.com/en/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account

我用发布插件配置和 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 密钥信息包含在私钥位置、密码短语中,并将公钥的内容粘贴到“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 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(公钥)
  • known_hosts

在使用 ssh-add ~/.ssh/id_ed25519 将我的密钥添加到 ssh 代理后,我在 git-bash 中使用以下命令启动插件的发布:

mvn -X -Dusername=git release:clean release:prepare release:perform

当系统提示我输入版本和标签信息时,我只需按 Enter 键即可选择默认值。

  • 发布版本:2.0.1
  • 下一个开发版本:2.0.2-SNAPSHOT

另外,我遇​​到了一些类似的帖子how to resolve Permission denied (publickey) when maven release used,OP 说他通过将公钥添加到 POM 文件中的 developerConnection/push 部分解决了这个问题,但我从未见过这样的事情,我没有不认为这是适合的地方。

编辑(在@VonC 的回答之后):在将用户从 nbauma109 更改为 git,并更新 POM 和 maven settings.xml 之后,我现在有两个存储库,带有私钥身份验证的 github.com 和 pkg.github。 com 与人员令牌身份验证。现在我可以将标签推送到 github.com,并且我可以将包推送到 Github 包 (pkg.github.com),前提是我的个人令牌 github_personal_token 具有“写包”权限。

现在我的问题是我已经推送了一个未经身份验证的人无法访问的包,并且我的发布标签没有其他项目可以使用的二进制文件。除了使用 Github Web GUI 手动将我的二进制文件重新上传到发布标签之外,我没有其他选择吗?

【问题讨论】:

    标签: git maven github ssh ssh-keys


    【解决方案1】:

    只要看到nbauma109@github.com,就可以确定 SSH 推送会失败(从命令行或 maven)

    GitHub SSH URL总是使用远程用户“git”:git@github.com:...,而不是实际的 GitHub 用户帐户名:假设您注册到所述 GitHub 帐户的公钥是为了进行身份验证你。

    所以开始测试:

    <username>git</username>
    

    【讨论】:

    • 好的,现在它设法推送一个标签,但现在它在推送到 Github 包时卡在推送(没有错误)。我会相应地更新我的问题。
    • @Sybuser 这完全是一个单独的问题。
    猜你喜欢
    • 1970-01-01
    • 2021-11-10
    • 2016-05-13
    • 1970-01-01
    • 2021-05-09
    • 2011-06-18
    • 2018-09-16
    • 2021-11-19
    • 2016-01-11
    相关资源
    最近更新 更多