Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. # Sample build file
  2. # @author Suren Konathala
  3. # -----
  4. image: node:8
  5.  
  6. pipelines:
  7. default:
  8. - step:
  9. caches:
  10. - node
  11. script: # Modify the commands below to build your repository.
  12. - echo "$(ls -la)"
  13. - npm install
  14. - npm install -g @angular/cli
  15. - ng build --prod
  16. - echo "$(ls -la dist/)"
  17. - scp -r dist/ user@34.73.227.137:/projets/commerce1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement