Created
October 4, 2021 17:49
-
-
Save nyambeni/8c6bb6233f02f5c284a2db7a87fd4c3e to your computer and use it in GitHub Desktop.
AWS CodeBuild buildspec for Ionic (Angular) app
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: | |
pre_build: | |
commands: | |
- npm i -g cordova | |
- npm i | |
build: | |
commands: | |
- ionic build --prod | |
post_build: | |
commands: | |
- aws cloudfront create-invalidation --distribution-id "${DISTRIBUTION_ID}" --paths '/*' | |
artifacts: | |
files: | |
- '**/*' | |
base-directory: www |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment