Saltar al contenido

gitlab ci / cd con ejemplo de código vps

Ejemplo: configurar ci cd gitlab

Step 1:
Create .gitlab-ci.yml file (root folder)

Step 2:
Open .gitlab-ci.yml file: fill something below

--------------------
image: ubuntu:18.04

before_script:
  - apt-get update -qy
  - apt-get install -y lftp

build:
  script:
    # Sync to FTP
    - lftp -e "set ftp:ssl-allow no; open xxx.yyy.zzz.uuu; user ftp_account ftp_password; mirror -X .* -X .*/ --reverse --verbose ./ ./; bye"

--------------------
NOTE: 
ftp_account: MUST set here
ftp_password: MUST set here

link ref
https://savjee.be/2019/04/gitlab-ci-deploy-to-ftp-with-lftp/
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *