git 如何使用 BitBucket 进行发布、构建和/或快照?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/29887925/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-09 03:07:39  来源:igfitidea点击:

How do I make a releases, builds, and/or snapshots with BitBucket?

gitbitbucketreleasesnapshot

提问by Meeesh

I would like to be able to make releases and builds for my game.
I know GitHub has releases, but I am using BitBucket instead.

我希望能够为我的游戏发布和构建。
我知道 GitHub 有发布版本,但我使用的是 BitBucket。

Does anyone know how to make releases with BitBucket as like a checkpoint so I can just have the files documented for every update?

有谁知道如何像检查点一样使用 BitBucket 进行发布,以便我可以为每次更新记录文件?

采纳答案by VonC

As I mentioned before, BitBucket doesn't support the GitHub-like release feature. Its FAQstill mention:

正如我之前提到的,BitBucket 不支持类似 GitHub 的发布功能。它的常见问题仍然提到:

For binary or executable storage, we recommend you look into file hosting services such as DropBox, rsync, rsnapshot, rdiff-backup, and so forth. Still not sure what to do? Review this post on stackoverflow for more ideas.

对于二进制或可执行存储,我们建议您查看文件托管服务,例如 DropBox、rsync、rsnapshot、rdiff-backup 等。仍然不确定该怎么做?查看关于 stackoverflow 的这篇文章以获得更多想法

For a BitBucket repo, you still have a soft limit to 1GB and an hard limit to 2GB.

对于 BitBucket 存储库,您仍然有1GB软限制和 2GB 的硬限制

回答by cogitoergosum

BitBucket Pipelines allows automatic builds and the output can be pushed to BitBucket Downloads.

BitBucket Pipelines 允许自动构建,输出可以推送到 BitBucket 下载。

BitBucket Pipelines

BitBucket 管道

BitBucket Downloads

BitBucket 下载

BitBucket Pipelines to BitBucket Downloads

BitBucket 管道到 BitBucket 下载

Hope this helps.

希望这可以帮助。