Guest User

Untitled

a guest
Mar 20th, 2019
487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. image: wagnerstephan/bitbucket-git-ftp
  2. pipelines:
  3. custom: # Pipelines that are triggered manually via the Bitbucket GUI
  4. init: # -- First time init
  5. - step:
  6. script:
  7. - git ftp init -vv -u $FTP_USER -p $FTP_PASS ftp://myserver.com/swagger/
  8. deploy-all: # -- Deploys all files from the selected commit
  9. - step:
  10. script:
  11. - git ftp push -vv -u $FTP_USER -p $FTP_PASS ftp://myserver.com/swagger/ --all
Advertisement
Add Comment
Please, Sign In to add comment