Created
October 9, 2020 07:25
-
-
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
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 | |
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