Skip to content

Instantly share code, notes, and snippets.

@nyambeni
Created October 4, 2021 17:49
Show Gist options
  • Save nyambeni/8c6bb6233f02f5c284a2db7a87fd4c3e to your computer and use it in GitHub Desktop.
Save nyambeni/8c6bb6233f02f5c284a2db7a87fd4c3e to your computer and use it in GitHub Desktop.
AWS CodeBuild buildspec for Ionic (Angular) app
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