Created
October 19, 2019 13:36
-
-
Save AndrewBestbier/85ed4b5e98e6480ce7d33c8d3e9ccc68 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| - pipeline: "CI Blog Post" | |
| trigger_mode: "ON_EVERY_PUSH" | |
| ref_name: "master" | |
| ref_type: "BRANCH" | |
| trigger_condition: "ALWAYS" | |
| actions: | |
| - action: "Execute: yarn test" | |
| type: "BUILD" | |
| working_directory: "/buddy/ci-comparison-blog" | |
| docker_image_name: "library/node" | |
| docker_image_tag: "10" | |
| execute_commands: | |
| - "yarn install" | |
| - "yarn test" | |
| setup_commands: | |
| - "npm install -g gulp grunt-cli" | |
| mount_filesystem_path: "/buddy/ci-comparison-blog" | |
| shell: "BASH" | |
| trigger_condition: "ALWAYS" | |
| - action: "Build Docker image" | |
| type: "DOCKERFILE" | |
| dockerfile_path: "Dockerfile" | |
| trigger_condition: "ALWAYS" | |
| - action: "Push Docker image" | |
| type: "DOCKER_PUSH" | |
| login: "andrewbestbier" | |
| password: "secure!KmF0va9L3z4s450LWVlvNdHi1+6Z6+45vQbkHS4bWFo=" | |
| docker_image_tag: "latest" | |
| repository: "andrewbestbier/ci-comparison-blog" | |
| trigger_condition: "ALWAYS" | |
| - action: "Upload files to Elastic Beanstalk/CI Comparison Blog" | |
| type: "ELASTIC_BEANSTALK" | |
| application_name: "CI Comparison Blog" | |
| environment: "e-zpfbesiqpa" | |
| environment_name: "CiComparisonBlog-env" | |
| region: "eu-west-2" | |
| trigger_condition: "ALWAYS" | |
| integration_id: 65587 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment