Daily Updates

|

Today I Read

  1. Painful journey of painless deployments : Airpair
  2. Continuous delivery bitbucket pipelines on git push
  3. Configure deployment script on bitbucket pipelines
bitbucket-pipelines.yml
--------
image: node:5.11.0
pipelines:
  default:
    - step:
        script:
          - echo "This script runs on all branches that don't have any specific pipeline assigned in 'branches'."
  branches:
    master:
      - step:
          script:
            - echo "This script runs only on commit to the master branch."
    feature/*:
      - step:
          image: java:openjdk-9 # This step uses its own image
          script:
            - echo "This script runs only on commit to branches with names that match the feature/* pattern."
  1. css tools of 2016 : speckyboy

Comments