Update .gitlab-ci.yml file

This commit is contained in:
2025-11-14 02:49:09 +01:00
parent dbb2e70a25
commit 82e10c9b99

View File

@@ -45,9 +45,7 @@ deploy:staging:
set ftp:passive-mode true; set ftp:passive-mode true;
set ftp:ssl-protect-data true; set ftp:ssl-protect-data true;
set ssl:verify-certificate no; set ssl:verify-certificate no;
mirror -R --delete \ mirror -R --delete --exclude .gitkeep src/ ${FTP_PATH_STAGING}src/;
--exclude .gitkeep \
src/ ${FTP_PATH_STAGING}src/;
bye bye
" "
@@ -57,9 +55,7 @@ deploy:staging:
set ftp:passive-mode true; set ftp:passive-mode true;
set ftp:ssl-protect-data true; set ftp:ssl-protect-data true;
set ssl:verify-certificate no; set ssl:verify-certificate no;
mirror -R --delete \ mirror -R --delete --exclude .gitkeep public/ ${FTP_PATH_STAGING}public/;
--exclude .gitkeep \
public/ ${FTP_PATH_STAGING}public/;
bye bye
" "
@@ -70,9 +66,7 @@ deploy:staging:
set ftp:ssl-protect-data true; set ftp:ssl-protect-data true;
set ssl:verify-certificate no; set ssl:verify-certificate no;
lcd config/staging; lcd config/staging;
mirror -R --delete \ mirror -R --delete --exclude .gitkeep ./ ${FTP_PATH_STAGING}config/;
--exclude .gitkeep \
./ ${FTP_PATH_STAGING}config/;
bye bye
" "
@@ -131,9 +125,7 @@ deploy:production:
set ftp:passive-mode true; set ftp:passive-mode true;
set ftp:ssl-protect-data true; set ftp:ssl-protect-data true;
set ssl:verify-certificate no; set ssl:verify-certificate no;
mirror -R --delete \ mirror -R --delete --exclude .gitkeep src/ ${FTP_PATH_PROD}src/;
--exclude .gitkeep \
src/ ${FTP_PATH_PROD}src/;
bye bye
" "
@@ -143,9 +135,7 @@ deploy:production:
set ftp:passive-mode true; set ftp:passive-mode true;
set ftp:ssl-protect-data true; set ftp:ssl-protect-data true;
set ssl:verify-certificate no; set ssl:verify-certificate no;
mirror -R --delete \ mirror -R --delete --exclude .gitkeep public/ ${FTP_PATH_PROD}public/;
--exclude .gitkeep \
public/ ${FTP_PATH_PROD}public/;
bye bye
" "
@@ -156,9 +146,7 @@ deploy:production:
set ftp:ssl-protect-data true; set ftp:ssl-protect-data true;
set ssl:verify-certificate no; set ssl:verify-certificate no;
lcd config/prod; lcd config/prod;
mirror -R --delete \ mirror -R --delete --exclude .gitkeep ./ ${FTP_PATH_PROD}config/;
--exclude .gitkeep \
./ ${FTP_PATH_PROD}config/;
bye bye
" "