gpt4 book ai didi

bamboo - 如何在Bitbucket管道中保存工件

转载 作者:行者123 更新时间:2023-12-04 11:47:37 24 4
gpt4 key购买 nike

我是 Bamboo 的新手。我试图做的是收集在构建过程中创建的所有.dacpac文件。

image: microsoft/dotnet:latest
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- cd BackgroundCode
- dotnet restore
- dotnet run
artifacts:
- '../**/*.dacpac'

目录结构为

'agent/build/Projects/[Projectname]/[Projectname].dacpac'.



管道的输出说

Successfully generated zip archive /opt/atlassian/pipelines/agent/build/Projects/[ProjectName]/[ProjectName].dacpac



这意味着在构建过程中确实生成了文件。
我做错什么了吗?如果否,我将在哪里找到这些工件。

最佳答案

不幸的是,根据文档,在管道运行后,所有工件都将被删除:

https://confluence.atlassian.com/bitbucket/using-artifacts-in-steps-935389074.html

"Once a pipeline completes, whether it succeeds or fails, the artifacts are deleted."



但是,您可以将工件部署到Bitbucket下载部分或其他任何地方:

https://confluence.atlassian.com/bitbucket/deploy-build-artifacts-to-bitbucket-downloads-872124574.html
- step:
name: Archive
script:
- curl -X POST --user "${BB_AUTH_STRING}" "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"something/**"

关于bamboo - 如何在Bitbucket管道中保存工件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46680138/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com