Skip to content

Instantly share code, notes, and snippets.

@Zir0-93
Last active January 16, 2019 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zir0-93/85b1d1c7433049c8d41de082366c362c to your computer and use it in GitHub Desktop.
Save Zir0-93/85b1d1c7433049c8d41de082366c362c to your computer and use it in GitHub Desktop.
Bitbucket Continuous Delivery Pipeline Skeleton for Lambda Function
pipelines:
default:
- step:
name: Run Static Analysis Tools
script:
...
- step:
name: Run Automated Tests
script:
...
branches:
master:
- step:
name: Run Static Analysis Tools
script:
...
- step:
name: Run Automated Tests
script:
...
- step:
name: Update STAGING
deployment: staging
script:
(deploy to staging)...
- step:
name: Update PROD
deployment: production
trigger: manual
script:
(deploy to production)...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment