我无法从 CircleCi 上的多个存储库中克隆

I'm unable to clone from multiple repos on CircleCi

我无法从 CircleCi 下载我新发布的 go 包。在本地有效。 我可以通过访问来验证我尝试使用的标签是否可用 https://github.com/acme/my-lib/tree/v0.0.3

但是go get不会下载。

我有GOPRIVATE=github.com/acme/我也试过github.com/acme/*,结果一样。

运行go getreturns这个

go: finding github.com/acme/my-lib v0.0.3
go: github.com/acme/my-lib@v0.0.3: unknown revision v0.0.3
go: error loading module requirements

go.mod

module github.com/acme/project

require (
          github.com/acme/my-lib v0.0.3
)

当来自 CircleCi 的 运行 时,为什么无法识别我标记的版本`

我也试过改变我的 .git/config:

[remote "origin"]
        # url = git@github.com:acme/my-lib.git
        url = https://github.com/acme/my-lib.git

https 或 ssh 都不起作用。

git ls-从桌面远程

git ls-remote https://github.com/acme/my-lib | ack v0.0.3
$SHA        refs/tags/v0.0.3

git ls-远离circleci

git ls-remote https://github.com/acme/my-lib | grep v0.0.3
ERROR: Repository not found.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

您需要配置 Circle CI 才能读取其他私有存储库:https://circleci.com/docs/2.0/gh-bb-integration/#enable-your-project-to-check-out-additional-private-repositories ?

为了能够创建可重现的版本,您是否考虑过在 /acme/project 中销售:https://tip.golang.org/cmd/go/#hdr-Modules_and_vendoring ?