diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index d922751c..321823d4 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -8,20 +8,12 @@ image: php:8.2-cli pipelines: default: - - parallel: - - step: - name: Initialize Git FTP - script: - - apt-get update - - apt-get -qq install git-ftp - - git ftp init -u $FTP_USERNAME -p $FTP_PASSWORD $FTP_URL - caches: - - composer - - step: - name: Deploy using Git FTP - script: - - apt-get update - - apt-get -qq install git-ftp - - git ftp push -u $FTP_USERNAME -p $FTP_PASSWORD $FTP_URL - caches: - - composer + - step: + name: Initialize and Deploy using Git FTP + script: + - apt-get update + - apt-get -qq install git-ftp + - git ftp init -u $FTP_USERNAME -p $FTP_PASSWORD $FTP_URL + - git ftp push -u $FTP_USERNAME -p $FTP_PASSWORD $FTP_URL + caches: + - composer