Conan 软件包注册表
为您的用户或组织发布 Conan 软件包。
要求
要使用 conan 软件包注册表,您需要使用 conan 命令行工具来消费和发布软件包。
配置软件包注册表
要注册软件包注册表,您需要配置一个新的 Conan remote:
conan remote add {remote} https://gitea.example.com/api/packages/{owner}/conan
conan user --remote {remote} --password {password} {username}
参数 | 描述 |
---|---|
remote | 远程名称。 |
username | 您的 Gitea 用户名。 |
password | 您的 Gitea 密码。如果您使用 2FA 或 OAuth,请使用个人访问令牌替代密码。 |
owner | 软件包的所有者。 |
例如:
conan remote add gitea https://gitea.example.com/api/packages/testuser/conan
conan user --remote gitea --password password123 testuser