Skip to content

Instantly share code, notes, and snippets.

@PrashantBhatasana
Created October 9, 2020 07:25
Show Gist options
  • Save PrashantBhatasana/b46fd4dab4e05f9d06e36f787570faac to your computer and use it in GitHub Desktop.
Save PrashantBhatasana/b46fd4dab4e05f9d06e36f787570faac to your computer and use it in GitHub Desktop.
This is the Buildspec file for AWS CodePipeline  Deploy Alexa skill using ask-skill kit
version: 0.2
env:
variables:
AWS_ACCESS_KEY_ID: "${AWS_ACCESS_KEY_ID}"
AWS_SECRET_ACCESS_KEY: "${AWS_SECRET_ACCESS_KEY}"
ASK_VENDOR_ID: "${ASK_VENDOR_ID}"
ASK_REFRESH_TOKEN: "${ASK_REFRESH_TOKEN}"
phases:
install:
commands:
- npm install --silent --no-progress -g npm
- npm install --silent --no-progress -g ask-cli
- npm install --silent --no-progress
- npm install -g ask-cli
build:
commands:
- ask deploy --ignore-hash
- cat .ask/ask-states.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment