AWS CodeBuild 不生成构建文件夹 - NodeJS

IT技术 node.js reactjs amazon-web-services aws-codebuild
2021-05-18 04:22:16

我正在尝试将网站从 Heroku 迁移到 AWS,但遇到 CodeBuild 问题。源代码在 GitHub 上,我使用的是 CodePipeline - CodeBuild - Elastic Beanstalk。管道工作正常,并且代码似乎正在进入 Elastic Beanstalk。但是,我被困在 CodeBuild 步骤。(buildspec.yml 在下面)

日志似乎可以正常运行命令,但是当我将构建输出到 S3 存储桶时,没有构建文件夹。这就是我在使用 Elastic Beanstalk 时遇到的问题……它没有找到构建文件夹来呈现前端。我错过了什么??

构建规范.yml:

version: 0.2

phases: 
  install:
    commands:
      # Install Node
      - echo Installing Node 12...
      - curl -sL https://deb.nodesource.com/setup_12.x | bash -
      - apt install -y nodejs
  pre_build:
    commands:
      #install dependencies
      - echo Installing dependencies...
      - npm install
  build:
    commands:
      #build
      - echo Building...
      - npm run build
artifacts:
  files:
    "**/*"
  discard-paths: no
  base-directory: client/build

网站使用 MySQL、Express、React、NodeJS 构建

1个回答

基于该buildspec.yaml 基准artifacts应该是一个数组

因此,我认为您应该将当前files部分更改为:

artifacts:
  files:
    - '**/*'