Need to put CodeBuild artifacts at the root of S3 bucket (static website)

0

I am trying to put my ReactJS project output to an S3 bucket (root). So far, I am able to put the build output from my build to a folder named "output" in S3 bucket (my-bucket-name/output) with the below buildspec.yml file,

version: 0.2

phases:
install:
runtime-versions:
nodejs: 12.x
pre_build:
commands:
- cd $CODEBUILD_SRC_DIR
- npm install
build:
commands:
- cd $CODEBUILD_SRC_DIR
- npm run build
artifacts:
files:
- '**/*'
base-directory: build
name: output

While creating the build project, I kept the following settings,

  • Enable semantic versioning set to ON
  • Path: Blank
  • Artifact packaging: None

However, I want to put everything at the root of the S3 bucket for the static website to work correctly. If I remove the artifacts/name attribute, it creates the folder with the build project name.

Any pointers?

NOTE: I am pulling code from AWS CodeCommit

amitst
已提問 3 年前檢視次數 1899 次
1 個回答
0

Got the solution at https://stackoverflow.com/a/54925922/8813473

After I removed the name parameter from artifacts, I did the following changes in the artifacts section of the project,

  • Unchecked the semantic builds option
  • Put / in the optional "name" parameter

The above changes solved my issue

amitst
已回答 3 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南