Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. image: node:10.15.3
  2.  
  3. pipelines:
  4. branches:
  5. develop:
  6. - step:
  7. name: Build and test website and deploy.
  8. caches:
  9. - node
  10. script:
  11. - yarn install
  12. - yarn test-build
  13. artifacts:
  14. - assets/**
  15. - step:
  16. name: Lets push the data to the Server.
  17. trigger: manual
  18. caches:
  19. - node
  20. script:
  21. - pipe: atlassian/sftp-deploy:0.4.1
  22. variables:
  23. USER: $SFTP_username
  24. PASSWORD: $SFTP_password
  25. SERVER: $SFTP_host
  26. REMOTE_PATH: /var/www/html/pipeline-http/test-website/
  27. DEBUG: 'true'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement