1

我正在使用 AWS CodePipeline,它从我的 git 存储库中获取源,使用CodeBuildbuildSpec 构建输出工件并将其保存到 S3 存储桶,最终部署到Elastic BeanStalk(NodeJS 环境)。

一切正常,但我需要管道从我的一个AWS S3存储桶中复制 1 个特定文件并将其添加output artifactsEB

可以使用 buildSpec 完成吗?

artifacts:
  files:
    - '**/*'
    # - How to add a file from S3 to the artifacts?
4

1 回答 1

4

我的建议是作为buildor的一部分post_build,将所需文件从 s3 复制到您的构建目录中。

build:
  commands:
    - echo "Build commands"
    - aws s3 cp --region=xx-xxxx-x "s3://file/in/s3" "local-file-instance-to-include"

然后,您将从 s3 复制的文件可用于您的构建,并且您可以将其添加到工件输出中。

于 2021-01-22T23:39:50.723 回答