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
demandé il y a 3 ans1782 vues
1 réponse
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
répondu il y a 3 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions