-
-
Save romitkarmakar/2e0ace6b02677977316d8435acd8fc8d to your computer and use it in GitHub Desktop.
buildspec.yml file for uploading static site to AWS S3 with CodeBuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 0.2 | |
phases: | |
install: | |
commands: | |
- npm i npm@latest -g | |
- pip install --upgrade pip | |
- pip install --upgrade awscli | |
pre_build: | |
commands: | |
- npm install | |
build: | |
commands: | |
- npm run build:$ENVIRONMENT | |
post_build: | |
commands: | |
- aws s3 sync ./build $S3_BUCKET |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment