Skip to content

Instantly share code, notes, and snippets.

@zeekrey
Created March 30, 2019 22:12
Show Gist options
  • Save zeekrey/93806b8ded460eb56360a937112d8b2d to your computer and use it in GitHub Desktop.
Save zeekrey/93806b8ded460eb56360a937112d8b2d to your computer and use it in GitHub Desktop.
AWS CodeBuild buildspec for Vue.js
version: 0.2
phases:
install:
commands:
- npm install -g yarn
pre_build:
commands:
- yarn install
build:
commands:
- yarn build
post_build:
commands:
- echo nothing to do
artifacts:
files:
- '**/*'
base-directory: dist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment