Created
December 15, 2018 13:33
-
-
Save hzburki/0711e7d637c148fe0957d41186d3d4d2 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