Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. image: node:10.15.1
  2. pipelines:
  3. default: # Pipelines that are triggered manually via the Bitbucket GUI
  4. - step:
  5. name: Build
  6. script:
  7. - npm install
  8. - CI=false npm run build-pl
  9. artifacts: # defining build/ as an artifact
  10. - build/**
  11. - step:
  12. name: Deploy
  13. script:
  14. - pipe: atlassian/ftp-deploy:0.3.0
  15. variables:
  16. USER: ''
  17. PASSWORD: ''
  18. SERVER: '188.116.12.132'
  19. REMOTE_PATH: '/domains/dna.dev-industry.com/public_html'
  20. LOCAL_PATH: 'build'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement