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
preguntada hace 3 años1909 visualizaciones
1 Respuesta
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
respondido hace 3 años

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas