Skip to content

Instantly share code, notes, and snippets.

@adeonir
Created November 28, 2018 11:32
Show Gist options
  • Save adeonir/abb8654757873711667cf2872da58e27 to your computer and use it in GitHub Desktop.
Save adeonir/abb8654757873711667cf2872da58e27 to your computer and use it in GitHub Desktop.
Deploy to FTP using GitLab CI
deploy:
stage: deploy
only:
- master
script:
- apt-get update -qq && apt-get install -qq lftp -y
- lftp -c "set ftp:ssl-allow false; open -u $USERNAME,$PASSWORD $HOST; mirror -Rv dist/ ./public_html --ignore-time -p"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment