Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. image: node:10.15.3
  2.  
  3. pipelines:
  4. default:
  5. - step:
  6. name: FTP Deploy
  7. script: # Modify the commands below to build your repository.
  8. - pipe: atlassian/ftp-deploy:0.2.0
  9. variables:
  10. USER: 'myFTPusername'
  11. PASSWORD: 'myFTPpass'
  12. SERVER: 'myFTPserver'
  13. REMOTE_PATH: 'myFTPpath'
  14. - step:
  15. name: Deploy message
  16. deployment: test
  17. script:
  18. - echo "Deploying to main environment"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement