Push a folder from Bitbucket repo to public server using Pipelines
问题 I have pipelines enabled in my Bitbucket repository and I need to run Angular 2 build and deploy the dist folder (which gets created after the build command is executed) in my server after every build. I have following in my bitbucket-pipelines.yml file: image: node:4.6.0 pipelines: default: - step: script: # Modify the commands below to build your repository. - npm install - npm run build:prod I found this code snippet on the Internet: - apt-get update - apt-get -qq install git-ftp - git ftp