From 3725ac631b0e8affc6de6c151f471430f6b1adcb Mon Sep 17 00:00:00 2001 From: Venba Date: Sat, 30 Mar 2024 06:38:47 +0000 Subject: [PATCH] Initial Bitbucket Pipelines configuration --- bitbucket-pipelines.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 bitbucket-pipelines.yml diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml new file mode 100644 index 00000000..8288ba2e --- /dev/null +++ b/bitbucket-pipelines.yml @@ -0,0 +1,20 @@ +# Template PHP Build + +# This template allows you to validate your PHP application. +# The workflow allows running tests and code linting on the default branch. + +image: composer:2.0 + + +pipelines: + default: + - parallel: + - step: + name: Test + script: + - composer install + - apt-get update + - apt-get -qq install git-ftp + - git ftp push -u $FTP_USERNAME -p $FTP_PASSWORD $FTP_URL + caches: + - composer \ No newline at end of file